aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/RunStyles.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-04-19 13:21:08 +0000
committernyamatongwe <unknown>2007-04-19 13:21:08 +0000
commitf1eb7da396f7a856006c15254216b5867ea23bc9 (patch)
treeaba5d8f3e3758feb0f7fba7256d2a4c01b54044b /src/RunStyles.h
parent476e533e7277cfd122f3ca3472783831c9e47ca5 (diff)
downloadscintilla-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.h4
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);