diff options
author | nyamatongwe <devnull@localhost> | 2003-09-28 22:06:23 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-09-28 22:06:23 +0000 |
commit | e098d9e7420a8deec3db17df31d9d7bb4dbcf22b (patch) | |
tree | 08e41dc38284608575f3bc1dbc375502ce65ecb5 /src/Document.h | |
parent | 11b58966dcd5909f1fbd22def7f9888893bdd16f (diff) | |
download | scintilla-mirror-e098d9e7420a8deec3db17df31d9d7bb4dbcf22b.tar.gz |
Hotspot improvements from Simon, including setting to
limit hotspots to a single line.
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 bcdbe00ca..4b44655f3 100644 --- a/src/Document.h +++ b/src/Document.h @@ -220,7 +220,7 @@ public: bool IsWordPartSeparator(char ch); int WordPartLeft(int pos); int WordPartRight(int pos); - int ExtendStyleRange(int pos, int delta); + int ExtendStyleRange(int pos, int delta, bool singleLine = false); int ParaUp(int pos); int ParaDown(int pos); |