Commit 6e027cbb authored by Noomen Hamza's avatar Noomen Hamza Committed by Alexandre Julliard

WM_PAINT should be processed only by the TREEVIEW_Paint function, so

we don't need to call DefWindowProcA function within TREEVIEW_Paint.
parent 9fa09e7e
......@@ -2500,7 +2500,7 @@ TREEVIEW_Paint (HWND hwnd, WPARAM wParam, LPARAM lParam)
if(!wParam) EndPaint (hwnd, &ps);
TRACE("done\n");
return DefWindowProcA (hwnd, WM_PAINT, wParam, lParam);
return 0;
}
static LRESULT
......
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