Eliminate some useless error messages.

This commit is contained in:
Guy Albertelli 2002-01-29 17:11:30 +00:00 committed by Alexandre Julliard
parent 9b1d37260b
commit 9ef01a23c5
1 changed files with 10 additions and 0 deletions
dlls/comctl32

View File

@ -77,6 +77,16 @@ NATIVEFONT_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case WM_DESTROY:
return NATIVEFONT_Destroy (hwnd, wParam, lParam);
case WM_MOVE:
case WM_SIZE:
case WM_SHOWWINDOW:
case WM_WINDOWPOSCHANGING:
case WM_WINDOWPOSCHANGED:
case WM_SETFONT:
case WM_GETDLGCODE:
/* FIXME("message %04x seen but stubbed\n", uMsg); */
return DefWindowProcA (hwnd, uMsg, wParam, lParam);
default:
ERR("unknown msg %04x wp=%08x lp=%08lx\n",
uMsg, wParam, lParam);