From 6987a4b453bfa67835e858dae186b88dba73a420 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Thu, 9 Nov 2006 13:24:45 +0900 Subject: [PATCH] user32: Downgrade a FIXME to a WARN. --- dlls/user/win.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/user/win.c b/dlls/user/win.c index d355a13c643..5e938e41511 100644 --- a/dlls/user/win.c +++ b/dlls/user/win.c @@ -2318,7 +2318,7 @@ BOOL WINAPI SetWindowTextA( HWND hwnd, LPCSTR lpString ) 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, LPCWSTR lpString ) 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 ); } -- 2.11.4.GIT