diff options
author | Neil <nyamatongwe@gmail.com> | 2017-03-31 23:07:29 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-03-31 23:07:29 +1100 |
commit | 20a8cd5d081f553232f7443d4e2b73f83ca389d3 (patch) | |
tree | 7299420575766263a4f6438e83b24403ec3f6ef4 /src/Document.cxx | |
parent | 1649b97ceaf3a54b767b2ddb3593f820ad64142b (diff) | |
download | scintilla-mirror-20a8cd5d081f553232f7443d4e2b73f83ca389d3.tar.gz |
Hide decorations details a little.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 93467274c..344534868 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -2221,6 +2221,10 @@ void Document::IncrementStyleClock() { styleClock = (styleClock + 1) % 0x100000; } +void SCI_METHOD Document::DecorationSetCurrentIndicator(int indicator) { + decorations.SetCurrentIndicator(indicator); +} + void SCI_METHOD Document::DecorationFillRange(Sci_Position position, int value, Sci_Position fillLength) { if (decorations.FillRange(position, value, fillLength)) { DocModification mh(SC_MOD_CHANGEINDICATOR | SC_PERFORMED_USER, |