aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-07-26 07:28:36 +0000
committernyamatongwe <unknown>2007-07-26 07:28:36 +0000
commit5068b02e1f2ef2c0e05063498b01fb36d4f4a57c (patch)
treedab4414ba658b2148c4ebd76ffb52abaac4a0fd3 /src/Document.h
parent65c9e422b94e33cfb5bd18b81879c1d9bdcd30e4 (diff)
downloadscintilla-mirror-5068b02e1f2ef2c0e05063498b01fb36d4f4a57c.tar.gz
Added notification for changing line state and use it to redraw if a line
state change overruns the end of painting.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h
index 4b13da060..c13114b75 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -224,7 +224,7 @@ public:
void IncrementStyleClock();
void DecorationFillRange(int position, int value, int fillLength);
- int SetLineState(int line, int state) { return cb.SetLineState(line, state); }
+ int SetLineState(int line, int state);
int GetLineState(int line) { return cb.GetLineState(line); }
int GetMaxLineState() { return cb.GetMaxLineState(); }