diff options
author | nyamatongwe <unknown> | 2011-01-10 12:08:49 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-01-10 12:08:49 +1100 |
commit | 7a55b6d47b75b665100a04ca16e6a210d436d235 (patch) | |
tree | 3501681428732495b06b4321cbb0c8d977e9e3ec /src/Document.h | |
parent | b5f28ae72e7d19b28bb190189ba78a54ad9976a0 (diff) | |
download | scintilla-mirror-7a55b6d47b75b665100a04ca16e6a210d436d235.tar.gz |
Fixing double-click inside word selecting non-word characters. Bug #3111174.
A double-click on a visible character always selects that character and the word it is in.
From Jordan Russell.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 78f00a766..ecdf5ff65 100644 --- a/src/Document.h +++ b/src/Document.h @@ -357,6 +357,7 @@ public: const WatcherWithUserData *GetWatchers() const { return watchers; } int GetLenWatchers() const { return lenWatchers; } + CharClassify::cc WordCharClass(unsigned char ch); bool IsWordPartSeparator(char ch); int WordPartLeft(int pos); int WordPartRight(int pos); @@ -368,7 +369,6 @@ public: int BraceMatch(int position, int maxReStyle); private: - CharClassify::cc WordCharClass(unsigned char ch); bool IsWordStartAt(int pos); bool IsWordEndAt(int pos); bool IsWordAt(int start, int end); |