Module: wine Branch: master Commit: 4b77bb4ae2b05023a87c6f14590d6192495c3f67 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4b77bb4ae2b05023a87c6f1459... Author: ByeongSik Jeon <bsjeon(a)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;