diff options
author | Neil <nyamatongwe@gmail.com> | 2014-08-08 13:27:23 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-08-08 13:27:23 +1000 |
commit | 4a0683b68574a6edf561e9411fab597882764c6e (patch) | |
tree | 857476831013025cdea5425877916ceeae4effd6 /src/ScintillaBase.h | |
parent | a2940fd23daf6f8d82c9c821de5c40077ce0da84 (diff) | |
download | scintilla-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/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 2 |
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; |