Aric Stewart : user32: Pass WM_IME_CONTROL messages to the IME.

Alexandre Julliard julliard at winehq.org
Wed May 7 15:18:15 CDT 2014


Module: wine
Branch: master
Commit: dfa65a52bbc84b03709fd3d3f7c569b4d9e1642f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=dfa65a52bbc84b03709fd3d3f7c569b4d9e1642f

Author: Aric Stewart <aric at codeweavers.com>
Date:   Wed May  7 10:27:51 2014 -0500

user32: Pass WM_IME_CONTROL messages to the IME.

---

 dlls/user32/defwnd.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/dlls/user32/defwnd.c b/dlls/user32/defwnd.c
index b359c06..bcd6f91 100644
--- a/dlls/user32/defwnd.c
+++ b/dlls/user32/defwnd.c
@@ -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)




More information about the wine-cvs mailing list