From 29b2db009cba7b639ba35238bd3f67e52d76a0ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Fri, 3 Jan 2014 02:03:28 +0100 Subject: [PATCH] comctl32/tests: Use BOOL type where appropriate. --- dlls/comctl32/tests/header.c | 2 +- dlls/comctl32/tests/monthcal.c | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dlls/comctl32/tests/header.c b/dlls/comctl32/tests/header.c index 85437d0a52d..7fb73b1fcb5 100644 --- a/dlls/comctl32/tests/header.c +++ b/dlls/comctl32/tests/header.c @@ -1690,7 +1690,7 @@ static BOOL init(void) /* maximum 8 items allowed */ static void check_orderarray(HWND hwnd, DWORD start, DWORD set, DWORD expected, - int todo, int line) + BOOL todo, int line) { int count, i; INT order[8]; diff --git a/dlls/comctl32/tests/monthcal.c b/dlls/comctl32/tests/monthcal.c index 604fb9978a6..145d20faa18 100644 --- a/dlls/comctl32/tests/monthcal.c +++ b/dlls/comctl32/tests/monthcal.c @@ -961,18 +961,18 @@ static void test_hittest(void) typedef struct hittest_test { UINT ht; - int todo; + BOOL todo; } hittest_test_t; static const hittest_test_t title_hits[] = { /* Start is the same everywhere */ - { MCHT_TITLE, 0 }, - { MCHT_TITLEBTNPREV, 0 }, + { MCHT_TITLE, FALSE }, + { MCHT_TITLEBTNPREV, FALSE }, /* The middle piece is only tested for presence of items */ /* End is the same everywhere */ - { MCHT_TITLEBTNNEXT, 0 }, - { MCHT_TITLE, 0 }, - { MCHT_NOWHERE, 1 } + { MCHT_TITLEBTNNEXT, FALSE }, + { MCHT_TITLE, FALSE }, + { MCHT_NOWHERE, TRUE } }; MCHITTESTINFO mchit;