Mike McCormack : user32: Downgrade a FIXME to a WARN.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Nov 9 06:08:51 CST 2006


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

Author: Mike McCormack <mike at codeweavers.com>
Date:   Thu Nov  9 13:24:45 2006 +0900

user32: Downgrade a FIXME to a WARN.

---

 dlls/user/win.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user/win.c b/dlls/user/win.c
index d355a13..5e938e4 100644
--- a/dlls/user/win.c
+++ b/dlls/user/win.c
@@ -2318,7 +2318,7 @@ BOOL WINAPI SetWindowTextA( HWND hwnd, L
         return FALSE;
     }
     if (!WIN_IsCurrentProcess( hwnd ))
-        FIXME( "setting text %s of other process window %p should not use SendMessage\n",
+        WARN( "setting text %s of other process window %p should not use SendMessage\n",
                debugstr_a(lpString), hwnd );
     return (BOOL)SendMessageA( hwnd, WM_SETTEXT, 0, (LPARAM)lpString );
 }
@@ -2335,7 +2335,7 @@ BOOL WINAPI SetWindowTextW( HWND hwnd, L
         return FALSE;
     }
     if (!WIN_IsCurrentProcess( hwnd ))
-        FIXME( "setting text %s of other process window %p should not use SendMessage\n",
+        WARN( "setting text %s of other process window %p should not use SendMessage\n",
                debugstr_w(lpString), hwnd );
     return (BOOL)SendMessageW( hwnd, WM_SETTEXT, 0, (LPARAM)lpString );
 }




More information about the wine-cvs mailing list