Commit 42e612fd authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

cmdlgtst: Use NULL instead of casting 0 to a pointer.

parent f0ec2a5c
......@@ -304,9 +304,9 @@ static void paintMainWindow(HWND hWnd, UINT iMessage, WPARAM wParam, LPARAM lPar
/* now draw a couple of lines, just for giggles. */
MoveToEx(ps.hdc, rect.left, rect.top, (POINT *) 0);
MoveToEx(ps.hdc, rect.left, rect.top, NULL);
LineTo(ps.hdc, rect.right, rect.bottom);
MoveToEx(ps.hdc, rect.left, rect.bottom, (POINT *) 0);
MoveToEx(ps.hdc, rect.left, rect.bottom, NULL);
LineTo(ps.hdc, rect.right, rect.top);
/* draw some text */
......
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