Commit 3836e62e authored by Austin Lund's avatar Austin Lund Committed by Alexandre Julliard

comctl32/tests: LVM_GETRECTITEM should return TRUE.

parent 04607ca6
......@@ -3278,7 +3278,8 @@ static void test_getitemrect(void)
r = SendMessage(hwnd, LVM_INSERTITEMA, 0, (LPARAM)&item);
expect(0, r);
rect.left = LVIR_LABEL;
SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
r = SendMessage(hwnd, LVM_GETITEMRECT, 0, (LPARAM)&rect);
expect(TRUE, r);
expect(0, rect.left);
expect(0, rect.top);
todo_wine expect(96, rect.right);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment