aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-03-18 03:22:06 +0000
committernyamatongwe <devnull@localhost>2000-03-18 03:22:06 +0000
commitee2fb70f7d4a2cdf6cadab99633b9d0b990cbadd (patch)
tree8ea910eb7b6f233c050cc3394d9513f09b648831 /src/Editor.cxx
parent314339991bc681f42e11236848a8e4d3925b150f (diff)
downloadscintilla-mirror-ee2fb70f7d4a2cdf6cadab99633b9d0b990cbadd.tar.gz
Added SCI_LINESONSCREEN.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 7f9ce5980..bcefa8aec 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -3520,7 +3520,10 @@ LRESULT Editor::WndProc(UINT iMessage, WPARAM wParam, LPARAM lParam) {
caretSlop = lParam;
break;
-#ifdef INCLUDE_DEPRECATED_FEATURES
+ case SCI_LINESONSCREEN:
+ return LinesOnScreen();
+
+ #ifdef INCLUDE_DEPRECATED_FEATURES
case SCI_SETFORE:
vs.styles[STYLE_DEFAULT].fore.desired = Colour(wParam);
InvalidateStyleRedraw();