diff options
author | nyamatongwe <devnull@localhost> | 2007-04-19 13:21:08 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-04-19 13:21:08 +0000 |
commit | 8780a67905c9516b91ee014749ea791427075490 (patch) | |
tree | aba5d8f3e3758feb0f7fba7256d2a4c01b54044b /src/RunStyles.h | |
parent | 6f02bfd7333bd67d7e89531c9e80ee3b6d0915c7 (diff) | |
download | scintilla-mirror-8780a67905c9516b91ee014749ea791427075490.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); |