diff options
author | Neil <nyamatongwe@gmail.com> | 2020-02-18 10:21:17 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-02-18 10:21:17 +1100 |
commit | 1f90d600278536b7ff0aab128174a0f93915d433 (patch) | |
tree | 81c2e741e96255aaba94cb0ed968c87fe37f86e5 | |
parent | b82a2f50548c33bc6727a54e193a2cccaf4e12f7 (diff) | |
download | scintilla-mirror-1f90d600278536b7ff0aab128174a0f93915d433.tar.gz |
Bug [#2156]. Move IME method declarations together.
-rw-r--r-- | win32/ScintillaWin.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index ec64a633b..3c3b6a0b0 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -348,6 +348,10 @@ class ScintillaWin : bool PaintDC(HDC hdc); sptr_t WndPaint(); + // DBCS + void ImeStartComposition(); + void ImeEndComposition(); + LRESULT ImeOnReconvert(LPARAM lParam); sptr_t HandleCompositionWindowed(uptr_t wParam, sptr_t lParam); sptr_t HandleCompositionInline(uptr_t wParam, sptr_t lParam); static bool KoreanIME() noexcept; @@ -396,11 +400,6 @@ class ScintillaWin : void AddToPopUp(const char *label, int cmd = 0, bool enabled = true) override; void ClaimSelection() override; - // DBCS - void ImeStartComposition(); - void ImeEndComposition(); - LRESULT ImeOnReconvert(LPARAM lParam); - void GetIntelliMouseParameters() noexcept; void CopyToGlobal(GlobalMemory &gmUnicode, const SelectionText &selectedText); void CopyToClipboard(const SelectionText &selectedText) override; |