comctl32/tests: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2014-01-03 02:03:28 +01:00 committed by Alexandre Julliard
parent 6151371de3
commit 29b2db009c
2 changed files with 7 additions and 7 deletions

View File

@ -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];

View File

@ -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;