Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
29b2db00
Commit
29b2db00
authored
Jan 03, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Jan 03, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Use BOOL type where appropriate.
parent
6151371d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
header.c
dlls/comctl32/tests/header.c
+1
-1
monthcal.c
dlls/comctl32/tests/monthcal.c
+6
-6
No files found.
dlls/comctl32/tests/header.c
View file @
29b2db00
...
...
@@ -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
];
...
...
dlls/comctl32/tests/monthcal.c
View file @
29b2db00
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment