diff options
author | nyamatongwe <devnull@localhost> | 2013-04-28 08:47:16 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-04-28 08:47:16 +1000 |
commit | 8909e16511e850c20780f37c29c40d655ecb5bf8 (patch) | |
tree | 6e306f552795a5a3f5b0f44acf560387a0a97eb5 /src | |
parent | df33d4e921485c917e55d0e2d52f474802f0bd3f (diff) | |
download | scintilla-mirror-8909e16511e850c20780f37c29c40d655ecb5bf8.tar.gz |
Removed unused members.
Diffstat (limited to 'src')
-rw-r--r-- | src/Document.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Document.h b/src/Document.h index 76b584df2..285134503 100644 --- a/src/Document.h +++ b/src/Document.h @@ -208,7 +208,6 @@ public: } }; - enum charClassification { ccSpace, ccNewLine, ccWord, ccPunctuation }; private: int refCount; CellBuffer cb; @@ -407,8 +406,6 @@ public: bool AddWatcher(DocWatcher *watcher, void *userData); bool RemoveWatcher(DocWatcher *watcher, void *userData); - const WatcherWithUserData *GetWatchers() const { return watchers; } - int GetLenWatchers() const { return lenWatchers; } CharClassify::cc WordCharClass(unsigned char ch); bool IsWordPartSeparator(char ch); |