aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-08-08 13:27:23 +1000
committerNeil <nyamatongwe@gmail.com>2014-08-08 13:27:23 +1000
commit4a0683b68574a6edf561e9411fab597882764c6e (patch)
tree857476831013025cdea5425877916ceeae4effd6 /src
parenta2940fd23daf6f8d82c9c821de5c40077ce0da84 (diff)
downloadscintilla-mirror-4a0683b68574a6edf561e9411fab597882764c6e.tar.gz
Stop using last argument to AddCharUTF from Korean IME code as previus release
always used false for last argument so changing mynot be cmpatible. Move maxLenInputIME to superclass where it can be used for all platforms.
Diffstat (limited to 'src')
-rw-r--r--src/ScintillaBase.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h
index ee717cbda..668abed3c 100644
--- a/src/ScintillaBase.h
+++ b/src/ScintillaBase.h
@@ -38,6 +38,8 @@ protected:
idcmdSelectAll=16
};
+ enum { maxLenInputIME = 200 };
+
bool displayPopupMenu;
Menu popup;
AutoComplete ac;