aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-04-07 00:57:03 +0000
committernyamatongwe <unknown>2007-04-07 00:57:03 +0000
commit6d82fda3c167c1ebdc7242f9ee6d42de2a47e838 (patch)
tree855af185b33b67caf44e49c655059ff76782ef35 /src/Editor.cxx
parentcfc2acb4089acc872b9f06031ca39eef637c149c (diff)
downloadscintilla-mirror-6d82fda3c167c1ebdc7242f9ee6d42de2a47e838.tar.gz
More decoration code, with modifications reported from document to views
although this isn't optimal. Some checking for null changes. Messages documented. Methods for changing indicators in Accessor so can be used by lexers.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index cdbd81474..6f381a8ef 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -7147,13 +7147,11 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {
return pdoc->decorations.GetCurrentValue();
case SCI_INDICATORFILLRANGE:
- pdoc->decorations.FillRange(wParam, pdoc->decorations.GetCurrentValue(), lParam);
- InvalidateRange(wParam, wParam + lParam);
+ pdoc->DecorationFillRange(wParam, pdoc->decorations.GetCurrentValue(), lParam);
break;
case SCI_INDICATORCLEARRANGE:
- pdoc->decorations.FillRange(wParam, 0, lParam);
- InvalidateRange(wParam, wParam + lParam);
+ pdoc->DecorationFillRange(wParam, 0, lParam);
break;
case SCI_INDICATORALLONFOR: