aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2004-07-22 01:02:15 +0000
committernyamatongwe <devnull@localhost>2004-07-22 01:02:15 +0000
commit1e897e643d5acc133f9c90beeec20428d2037e41 (patch)
tree43b1c8d5d353905b6e9917d9bcd2b6dd335a991d /src/Editor.cxx
parent80cef9861be6eb687bace05e989677a3b3df675d (diff)
downloadscintilla-mirror-1e897e643d5acc133f9c90beeec20428d2037e41.tar.gz
New method SCI_FINDCOLUMN.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx3
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;