Commit 682c89ce authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

wordpad: Use BOOL type where appropriate.

parent e4591316
...@@ -1141,7 +1141,7 @@ LRESULT CALLBACK preview_proc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) ...@@ -1141,7 +1141,7 @@ LRESULT CALLBACK preview_proc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{ {
POINT pt; POINT pt;
RECT rc; RECT rc;
int bHittest = FALSE; int bHittest = 0;
DWORD messagePos = GetMessagePos(); DWORD messagePos = GetMessagePos();
pt.x = (short)LOWORD(messagePos); pt.x = (short)LOWORD(messagePos);
pt.y = (short)HIWORD(messagePos); pt.y = (short)HIWORD(messagePos);
......
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