diff options
| author | nyamatongwe <unknown> | 2000-06-08 05:05:20 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2000-06-08 05:05:20 +0000 | 
| commit | 685aa7d854e176c5f9eebf3854a33622400779cf (patch) | |
| tree | 676d883433f02331198c3e9e08c441cb0098bdad /src/Document.cxx | |
| parent | 496f25f54ed359670be586500b84c25875fd3bbd (diff) | |
| download | scintilla-mirror-685aa7d854e176c5f9eebf3854a33622400779cf.tar.gz | |
Added CreateDocument message and changed AddRefDoc and ReleaseDoc to
AddRefDocument and ReleaseDocument.
Diffstat (limited to 'src/Document.cxx')
| -rw-r--r-- | src/Document.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index de06756a5..0f71231b6 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -54,7 +54,7 @@ int Document::AddRef() {  	return refCount++;  } -// Decrease reference count and return its provius value. +// Decrease reference count and return its previous value.  // Delete the document if reference count reaches zero.  int Document::Release() {  	int curRefCount = --refCount;  | 
