Change FIXME("Button size set after button in toolbar\n") in

SetButtonSize() to WARN as quite a few applications are doing this
after adding each button to the toolbar and there is no way we can
stop them.
This commit is contained in:
Chris Morgan 2000-09-18 01:41:50 +00:00 committed by Alexandre Julliard
parent 54449ce348
commit 7b7c32c801
1 changed files with 1 additions and 1 deletions

View File

@ -2842,7 +2842,7 @@ TOOLBAR_SetButtonSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
checks that the return value is nonzero - mjm */
if( infoPtr->nNumButtons != 0 )
{
FIXME("Button size set after button in toolbar\n");
WARN("Button size set after button in toolbar\n");
return TRUE;
}