=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: wordpad: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Thu Oct 17 13:51:49 CDT 2013


Module: wine
Branch: master
Commit: 682c89ced33d37a4c14324c9ba41c31034d04a7f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=682c89ced33d37a4c14324c9ba41c31034d04a7f

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Wed Oct 16 23:38:32 2013 +0200

wordpad: Use BOOL type where appropriate.

---

 programs/wordpad/print.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/programs/wordpad/print.c b/programs/wordpad/print.c
index eb48e48..9021989 100644
--- a/programs/wordpad/print.c
+++ b/programs/wordpad/print.c
@@ -1141,7 +1141,7 @@ LRESULT CALLBACK preview_proc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
         {
             POINT pt;
             RECT rc;
-            int bHittest = FALSE;
+            int bHittest = 0;
             DWORD messagePos = GetMessagePos();
             pt.x = (short)LOWORD(messagePos);
             pt.y = (short)HIWORD(messagePos);




More information about the wine-cvs mailing list