comctl32/tests: Remove some casts we don't need.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f5754b3d9a
commit
22bfbfe9fc
|
@ -2236,8 +2236,9 @@ static void test_multiselect(void)
|
||||||
|
|
||||||
HWND hwnd;
|
HWND hwnd;
|
||||||
INT r;
|
INT r;
|
||||||
int i,j,item_count,selected_count;
|
int i, j;
|
||||||
static const int items=5;
|
static const int items=5;
|
||||||
|
DWORD item_count;
|
||||||
BYTE kstate[256];
|
BYTE kstate[256];
|
||||||
select_task task;
|
select_task task;
|
||||||
LONG_PTR style;
|
LONG_PTR style;
|
||||||
|
@ -2255,10 +2256,11 @@ static void test_multiselect(void)
|
||||||
for (i = 0; i < items; i++)
|
for (i = 0; i < items; i++)
|
||||||
insert_item(hwnd, 0);
|
insert_item(hwnd, 0);
|
||||||
|
|
||||||
item_count = (int)SendMessageA(hwnd, LVM_GETITEMCOUNT, 0, 0);
|
item_count = SendMessageA(hwnd, LVM_GETITEMCOUNT, 0, 0);
|
||||||
expect(items, item_count);
|
expect(items, item_count);
|
||||||
|
|
||||||
for (i = 0; i < 4; i++) {
|
for (i = 0; i < 4; i++) {
|
||||||
|
DWORD selected_count;
|
||||||
LVITEMA item;
|
LVITEMA item;
|
||||||
|
|
||||||
task = task_list[i];
|
task = task_list[i];
|
||||||
|
@ -2291,9 +2293,11 @@ static void test_multiselect(void)
|
||||||
expect(0,r);
|
expect(0,r);
|
||||||
}
|
}
|
||||||
|
|
||||||
selected_count = (int)SendMessageA(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
|
selected_count = SendMessageA(hwnd, LVM_GETSELECTEDCOUNT, 0, 0);
|
||||||
|
|
||||||
ok((task.result == -1 ? item_count : task.result) == selected_count, "Failed multiple selection %s. There should be %d selected items (is %d)\n", task.descr, item_count, selected_count);
|
ok((task.result == -1 ? item_count : task.result) == selected_count,
|
||||||
|
"Failed multiple selection %s. There should be %d selected items (is %d)\n",
|
||||||
|
task.descr, item_count, selected_count);
|
||||||
|
|
||||||
/* Set SHIFT key released */
|
/* Set SHIFT key released */
|
||||||
GetKeyboardState(kstate);
|
GetKeyboardState(kstate);
|
||||||
|
@ -2307,7 +2311,7 @@ static void test_multiselect(void)
|
||||||
for (i=0;i<items;i++) {
|
for (i=0;i<items;i++) {
|
||||||
insert_item(hwnd, 0);
|
insert_item(hwnd, 0);
|
||||||
}
|
}
|
||||||
item_count = (int)SendMessageA(hwnd, LVM_GETITEMCOUNT, 0, 0);
|
item_count = SendMessageA(hwnd, LVM_GETITEMCOUNT, 0, 0);
|
||||||
expect(items,item_count);
|
expect(items,item_count);
|
||||||
|
|
||||||
/* try with NULL pointer */
|
/* try with NULL pointer */
|
||||||
|
|
Loading…
Reference in New Issue