diff options
author | nyamatongwe <devnull@localhost> | 2007-07-26 07:28:36 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-07-26 07:28:36 +0000 |
commit | ca93cd78c042364a4ccef5b9a60702dc4082574d (patch) | |
tree | dab4414ba658b2148c4ebd76ffb52abaac4a0fd3 /src/Document.h | |
parent | 6edcf7418b8777ff542502bde920dc7c80e12347 (diff) | |
download | scintilla-mirror-ca93cd78c042364a4ccef5b9a60702dc4082574d.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.h | 2 |
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(); } |