Commit d08fa61a authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

imm32: Use the same code for ImmIsUIMessageW as in the ascii function.

parent 4f1aae76
...@@ -1923,7 +1923,15 @@ BOOL WINAPI ImmIsUIMessageW( ...@@ -1923,7 +1923,15 @@ BOOL WINAPI ImmIsUIMessageW(
(msg == WM_MSIME_RECONVERT) || (msg == WM_MSIME_RECONVERT) ||
(msg == WM_MSIME_QUERYPOSITION) || (msg == WM_MSIME_QUERYPOSITION) ||
(msg == WM_MSIME_DOCUMENTFEED)) (msg == WM_MSIME_DOCUMENTFEED))
{
if (!IMM_GetThreadData()->hwndDefault)
ImmGetDefaultIMEWnd(NULL);
if (hWndIME == NULL)
PostMessageW(IMM_GetThreadData()->hwndDefault, msg, wParam, lParam);
rc = TRUE; rc = TRUE;
}
return rc; return rc;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment