Austin English : imm32: Quiet ImmGetOpenStatus fixme.

Alexandre Julliard julliard at winehq.org
Fri Apr 9 11:49:58 CDT 2010


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

Author: Austin English <austinenglish at gmail.com>
Date:   Fri Apr  9 10:56:41 2010 -0500

imm32: Quiet ImmGetOpenStatus fixme.

---

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

diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c
index 2898e5e..2a85b70 100644
--- a/dlls/imm32/imm.c
+++ b/dlls/imm32/imm.c
@@ -1643,10 +1643,15 @@ UINT WINAPI ImmGetIMEFileNameW(HKL hKL, LPWSTR lpszFileName, UINT uBufLen)
 BOOL WINAPI ImmGetOpenStatus(HIMC hIMC)
 {
   InputContextData *data = hIMC;
+  static int i;
 
     if (!data)
         return FALSE;
-  FIXME("(%p): semi-stub\n", hIMC);
+
+    TRACE("(%p): semi-stub\n", hIMC);
+
+    if (!i++)
+      FIXME("(%p): semi-stub\n", hIMC);
 
   return data->IMC.fOpen;
 }




More information about the wine-cvs mailing list