Skip to content
Snippets Groups Projects
Commit 9ef01a23 authored by Guy Albertelli's avatar Guy Albertelli Committed by Alexandre Julliard
Browse files

Eliminate some useless error messages.

parent 9b1d3726
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment