user32: Pass WM_IME_CONTROL messages to the IME.

This commit is contained in:
Aric Stewart 2014-05-07 10:27:51 -05:00 committed by Alexandre Julliard
parent 8ca711f428
commit dfa65a52bb
1 changed files with 2 additions and 0 deletions

View File

@ -831,6 +831,7 @@ LRESULT WINAPI DefWindowProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam
case WM_IME_ENDCOMPOSITION:
case WM_IME_SELECT:
case WM_IME_NOTIFY:
case WM_IME_CONTROL:
{
HWND hwndIME = ImmGetDefaultIMEWnd( hwnd );
if (hwndIME)
@ -983,6 +984,7 @@ LRESULT WINAPI DefWindowProcW(
case WM_IME_ENDCOMPOSITION:
case WM_IME_SELECT:
case WM_IME_NOTIFY:
case WM_IME_CONTROL:
{
HWND hwndIME = ImmGetDefaultIMEWnd( hwnd );
if (hwndIME)