diff options
author | nyamatongwe <unknown> | 2000-03-18 03:22:06 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-03-18 03:22:06 +0000 |
commit | 5b1696c853eade22c596eaf0786b218f37e1de04 (patch) | |
tree | 8ea910eb7b6f233c050cc3394d9513f09b648831 /src | |
parent | b500681e71e9138c29ae1233a7897068031dea17 (diff) | |
download | scintilla-mirror-5b1696c853eade22c596eaf0786b218f37e1de04.tar.gz |
Added SCI_LINESONSCREEN.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 5 |
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(); |