Aric Stewart : imm32: Correct a typo accidently using data instead of root_context.

Alexandre Julliard julliard at winehq.org
Tue Apr 1 06:51:34 CDT 2008


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

Author: Aric Stewart <aric at codeweavers.com>
Date:   Mon Mar 31 13:08:34 2008 -0500

imm32: Correct a typo accidently using data instead of root_context.

---

 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 2785922..950fdc5 100644
--- a/dlls/imm32/imm.c
+++ b/dlls/imm32/imm.c
@@ -1860,7 +1860,7 @@ BOOL WINAPI ImmSetOpenStatus(HIMC hIMC, BOOL fOpen)
     if (hIMC == (HIMC)FROM_IME)
     {
         ImmInternalSetOpenStatus(fOpen);
-        ImmInternalSendIMENotify(data, IMN_SETOPENSTATUS, 0);
+        ImmInternalSendIMENotify(root_context, IMN_SETOPENSTATUS, 0);
         return TRUE;
     }
 




More information about the wine-cvs mailing list