diff options
author | nyamatongwe <unknown> | 2007-04-19 13:21:08 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-04-19 13:21:08 +0000 |
commit | f1eb7da396f7a856006c15254216b5867ea23bc9 (patch) | |
tree | aba5d8f3e3758feb0f7fba7256d2a4c01b54044b /src/RunStyles.h | |
parent | 476e533e7277cfd122f3ca3472783831c9e47ca5 (diff) | |
download | scintilla-mirror-f1eb7da396f7a856006c15254216b5867ea23bc9.tar.gz |
Optimized indicator changing with separate SC_MOD_CHANGEINDICATOR
notification flag.
Diffstat (limited to 'src/RunStyles.h')
-rw-r--r-- | src/RunStyles.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/RunStyles.h b/src/RunStyles.h index 8d5022cb4..009bb6739 100644 --- a/src/RunStyles.h +++ b/src/RunStyles.h @@ -12,7 +12,7 @@ public: Partitioning *starts; SplitVector<int> *styles; int RunFromPosition(int position); - void SplitRun(int position); + int SplitRun(int position); void RemoveRun(int run); void RemoveRunIfEmpty(int run); void RemoveRunIfSameAsPrevious(int run); @@ -25,7 +25,7 @@ public: int StartRun(int position); int EndRun(int position); // Returns true if some values may have changed - bool FillRange(int position, int value, int fillLength); + bool FillRange(int &position, int value, int &fillLength); void InsertSpace(int position, int insertLength); void DeleteAll(); void DeleteRange(int position, int deleteLength); |