Byeong-Sik Jeon : imm32: Send the WM_IME_CHAR message, although ResultString has been read.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Dec 8 06:06:55 CST 2006


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

Author: Byeong-Sik Jeon <wjsqudtlr at gmail.com>
Date:   Fri Dec  8 12:12:16 2006 +0900

imm32: Send the WM_IME_CHAR message, although ResultString has been read.

---

 dlls/imm32/imm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c
index 22cd75c..bee6472 100644
--- a/dlls/imm32/imm.c
+++ b/dlls/imm32/imm.c
@@ -1566,7 +1566,7 @@ static LRESULT WINAPI IME_WindowProc(HWN
             TRACE("IME message %s, 0x%x, 0x%x (%i)\n",
                     "WM_IME_COMPOSITION", (UINT)wParam, (UINT)lParam,
                      root_context->bRead);
-            if ((lParam & GCS_RESULTSTR) && (!root_context->bRead))
+            if (lParam & GCS_RESULTSTR)
                     IMM_PostResult(root_context);
             else
                  UpdateDataInDefaultIMEWindow(hwnd);




More information about the wine-cvs mailing list