Module: wine
Branch: master
Commit: 6987a4b453bfa67835e858dae186b88dba73a420
URL: http://source.winehq.org/git/wine.git/?a=commit;h=6987a4b453bfa67835e858dae…
Author: Mike McCormack <mike(a)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 );
}