diff options
author | Neil <nyamatongwe@gmail.com> | 2015-11-20 11:09:44 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2015-11-20 11:09:44 +1100 |
commit | a95a491c2aa40f466fa4041de0adfeffdc4bd44e (patch) | |
tree | 3ecba27850fdc30cf1713cfe248cedbc834eb632 | |
parent | 124307f221172d8c0638307f8ea227a842b45b1f (diff) | |
download | scintilla-mirror-a95a491c2aa40f466fa4041de0adfeffdc4bd44e.tar.gz |
Text layout whitespace fixes.
-rw-r--r-- | win32/ScintillaWin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index a5733d39b..fcf68db9e 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -981,7 +981,7 @@ void ScintillaWin::EscapeHanja() { SetCandidateWindowPos(); // IME_ESC_HANJA_MODE appears to receive the first character only. if (ImmEscapeW(GetKeyboardLayout(0), imc.hIMC, IME_ESC_HANJA_MODE, &uniChar[0])) { - SetSelection (currentPos, currentPos + oneCharLen); + SetSelection(currentPos, currentPos + oneCharLen); } } } @@ -1496,7 +1496,7 @@ sptr_t ScintillaWin::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam } case WM_IME_REQUEST: { - if (wParam == IMR_RECONVERTSTRING) { + if (wParam == IMR_RECONVERTSTRING) { return ImeOnReconvert(lParam); } return ::DefWindowProc(MainHWND(), iMessage, wParam, lParam); |