From 87e9e3d3ebfa7ad6ba1b8e3cab2e5fd0293d664e Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 13 Mar 2020 08:22:21 +1100 Subject: Mark ImmEscapeW as global. --- win32/ScintillaWin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win32') diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index eab1ff796..df05dea68 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1044,7 +1044,7 @@ void ScintillaWin::EscapeHanja() { // Set the candidate box position since IME may show it. SetCandidateWindowPos(); // IME_ESC_HANJA_MODE appears to receive the first character only. - if (ImmEscapeW(GetKeyboardLayout(0), imc.hIMC, IME_ESC_HANJA_MODE, &uniChar[0])) { + if (::ImmEscapeW(GetKeyboardLayout(0), imc.hIMC, IME_ESC_HANJA_MODE, &uniChar[0])) { SetSelection(currentPos, currentPos + oneCharLen); } } -- cgit v1.2.3