Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
abed5b49
Commit
abed5b49
authored
Oct 02, 2010
by
Marko Nikolic
Committed by
Alexandre Julliard
Oct 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Removed sign comparison warnings.
parent
8d978814
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
comboex.c
dlls/comctl32/tests/comboex.c
+5
-4
No files found.
dlls/comctl32/tests/comboex.c
View file @
abed5b49
...
...
@@ -234,7 +234,8 @@ static void test_WM_LBUTTONDOWN(void)
COMBOBOXINFO
cbInfo
;
UINT
x
,
y
,
item_height
;
LRESULT
result
;
int
i
,
idx
;
UINT
i
;
int
idx
;
RECT
rect
;
WCHAR
buffer
[
3
];
static
const
UINT
choices
[]
=
{
8
,
9
,
10
,
11
,
12
,
14
,
16
,
18
,
20
,
22
,
24
,
26
,
28
,
36
,
48
,
72
};
...
...
@@ -503,16 +504,16 @@ static void test_get_set_item(void)
item
.
lParam
=
0xdeadbeef
;
ret
=
SendMessage
(
hComboEx
,
CBEM_GETITEMA
,
0
,
(
LPARAM
)
&
item
);
expect
(
TRUE
,
ret
);
ok
(
item
.
lParam
==
0
,
"Expected zero, got %l
d
\n
"
,
item
.
lParam
);
ok
(
item
.
lParam
==
0
,
"Expected zero, got %l
x
\n
"
,
item
.
lParam
);
item
.
lParam
=
0x
deadbeef
;
item
.
lParam
=
0x
1abe11ed
;
ret
=
SendMessage
(
hComboEx
,
CBEM_SETITEMA
,
0
,
(
LPARAM
)
&
item
);
expect
(
TRUE
,
ret
);
item
.
lParam
=
0
;
ret
=
SendMessage
(
hComboEx
,
CBEM_GETITEMA
,
0
,
(
LPARAM
)
&
item
);
expect
(
TRUE
,
ret
);
ok
(
item
.
lParam
==
0x
deadbeef
,
"Expected 0xdeadbeef, got %ld
\n
"
,
item
.
lParam
);
ok
(
item
.
lParam
==
0x
1abe11ed
,
"Expected 0x1abe11ed, got %lx
\n
"
,
item
.
lParam
);
DestroyWindow
(
hComboEx
);
}
...
...
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