Skip to content
Snippets Groups Projects
Commit 401961f8 authored by Nicolas Le Cam's avatar Nicolas Le Cam Committed by Alexandre Julliard
Browse files

comctl32/tests: Remove a set but unused variable.

parent 5c29f78e
No related branches found
No related tags found
No related merge requests found
......@@ -3023,7 +3023,7 @@ static void test_hittest(void)
static CHAR text[] = "1234567890ABCDEFGHIJKLMNOPQRST";
POINT pos;
INT x, y, i;
WORD horiz, vert;
WORD vert;
HIMAGELIST himl, himl2;
HBITMAP hbmp;
......@@ -3053,7 +3053,6 @@ static void test_hittest(void)
ok(bounds.bottom - bounds.top > 0, "Expected non zero item height\n");
ok(bounds.right - bounds.left > 0, "Expected non zero item width\n");
r = SendMessage(hwnd, LVM_GETITEMSPACING, TRUE, 0);
horiz = LOWORD(r);
vert = HIWORD(r);
ok(bounds.bottom - bounds.top == vert,
"Vertical spacing inconsistent (%d != %d)\n", bounds.bottom - bounds.top, vert);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment