Commit 6987a4b4 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

user32: Downgrade a FIXME to a WARN.

parent f23ab817
......@@ -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 );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment