ByeongSik Jeon : user32: Pass the WM_IME_NOTIFY message to the default IME window.

Alexandre Julliard julliard at winehq.org
Wed Apr 23 07:59:45 CDT 2008


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

Author: ByeongSik Jeon <bsjeon at hanmail.net>
Date:   Tue Apr 22 12:33:22 2008 +0900

user32: Pass the WM_IME_NOTIFY message to the default IME window.

---

 dlls/user32/defwnd.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/user32/defwnd.c b/dlls/user32/defwnd.c
index 43ae405..9d72f9a 100644
--- a/dlls/user32/defwnd.c
+++ b/dlls/user32/defwnd.c
@@ -854,6 +854,7 @@ LRESULT WINAPI DefWindowProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam
     case WM_IME_COMPOSITION:
     case WM_IME_ENDCOMPOSITION:
     case WM_IME_SELECT:
+    case WM_IME_NOTIFY:
         {
             HWND hwndIME;
 
@@ -1006,6 +1007,7 @@ LRESULT WINAPI DefWindowProcW(
     case WM_IME_COMPOSITION:
     case WM_IME_ENDCOMPOSITION:
     case WM_IME_SELECT:
+    case WM_IME_NOTIFY:
         {
             HWND hwndIME;
 




More information about the wine-cvs mailing list