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
commitb56bbafb49a89ae493fdf9298988d0f199583366 (patch)
treeb08c770a778bcedeee6677dd994cc81707bfad51 /src
parentc5905297575b23f9454cb0dfe574140c2a329c95 (diff)
downloadscintilla-mirror-b56bbafb49a89ae493fdf9298988d0f199583366.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;