Commit dfa65a52 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

user32: Pass WM_IME_CONTROL messages to the IME.

parent 8ca711f4
......@@ -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)
......
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