user32: downgrade a FIXME to a WARN

Austin English austinenglish at gmail.com
Wed May 27 23:21:50 CDT 2009


This shows up a ton in Office 2007...

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/user32/hook.c b/dlls/user32/hook.c
index 0b0d7c4..b6dc8e8 100644
--- a/dlls/user32/hook.c
+++ b/dlls/user32/hook.c
@@ -891,6 +891,7 @@ void WINAPI NotifyWinEvent(DWORD event, HWND hwnd, LONG object_id, LONG child_id
  */
 BOOL WINAPI IsWinEventHookInstalled(DWORD dwEvent)
 {
-    FIXME("(%d)-stub!\n", dwEvent);
+    /* FIXME: Needed by Office 2007 installer */
+    WARN("(%d)-stub!\n", dwEvent);
     return TRUE;
 }


More information about the wine-patches mailing list