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/Editor.cxx | |
parent | 1649b97ceaf3a54b767b2ddb3593f820ad64142b (diff) | |
download | scintilla-mirror-20a8cd5d081f553232f7443d4e2b73f83ca389d3.tar.gz |
Hide decorations details a little.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 21c8fdf40..ea57b4d79 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -7354,7 +7354,7 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { return (wParam <= INDIC_MAX) ? vs.indicators[wParam].outlineAlpha : 0; case SCI_SETINDICATORCURRENT: - pdoc->decorations.SetCurrentIndicator(static_cast<int>(wParam)); + pdoc->DecorationSetCurrentIndicator(static_cast<int>(wParam)); break; case SCI_GETINDICATORCURRENT: return pdoc->decorations.GetCurrentIndicator(); |