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
cf6dae56
Commit
cf6dae56
authored
Jun 01, 2011
by
Marko Nikolic
Committed by
Alexandre Julliard
Jun 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Removed sign comparison warning in toolbar tests.
parent
6143403e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
toolbar.c
dlls/comctl32/tests/toolbar.c
+3
-3
No files found.
dlls/comctl32/tests/toolbar.c
View file @
cf6dae56
...
...
@@ -64,7 +64,7 @@ static const struct message ttgetdispinfo_parent_seq[] = {
#define compare(val, exp, format) ok((val) == (exp), #val " value " format " expected " format "\n", (val), (exp));
#define check_button_size(handle, width, height, ...) {\
DWORD
bsize = SendMessageA(handle, TB_GETBUTTONSIZE, 0, 0);\
LRESULT
bsize = SendMessageA(handle, TB_GETBUTTONSIZE, 0, 0);\
ok(bsize == MAKELONG(width, height), "Unexpected button size - got size (%d, %d), expected (%d, %d)\n", LOWORD(bsize), HIWORD(bsize), width, height);\
}
...
...
@@ -1000,7 +1000,7 @@ static tbsize_alt_result_t tbsize_alt_results[] =
{
20
,
2
,
{
107
,
2
,
207
,
102
}
}
};
static
int
tbsize_alt_numtests
=
0
;
static
DWORD
tbsize_alt_numtests
=
0
;
#define check_sizes_todo(todomask) { \
RECT rc; \
...
...
@@ -1529,7 +1529,7 @@ static void test_setrows(void)
{
TBBUTTON
buttons
[
9
];
HWND
hToolbar
;
int
i
;
DWORD
i
;
for
(
i
=
0
;
i
<
9
;
i
++
)
MakeButton
(
buttons
+
i
,
1000
+
i
,
TBSTYLE_FLAT
|
TBSTYLE_CHECKGROUP
,
0
);
...
...
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