imm32: quiet ImmGetOpenStatus fixme

Austin English austinenglish at gmail.com
Fri Apr 9 10:56:41 CDT 2010


It's really verbose when running Sims3, and also Sim City 4 Deluxe edition.

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c
index 2898e5e..a3a7b48 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-patches mailing list