diff options
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 81cf3bd47..3b16c9783 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -6307,6 +6307,9 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { case SCI_GETCOLUMN: return pdoc->GetColumn(wParam); + case SCI_FINDCOLUMN: + return pdoc->FindColumn(wParam, lParam); + case SCI_SETHSCROLLBAR : if (horizontalScrollBarVisible != (wParam != 0)) { horizontalScrollBarVisible = wParam != 0; |