http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04607ca
)
comctl32/tests: LVM_GETRECTITEM should return TRUE.
author
Austin Lund
<austin.lund@gmail.com>
Wed, 22 Sep 2010 06:28:30 +0000
(16:28 +1000)
committer
Alexandre Julliard
<julliard@winehq.org>
Wed, 22 Sep 2010 10:43:37 +0000
(12:43 +0200)
dlls/comctl32/tests/listview.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/comctl32/tests/listview.c
b/dlls/comctl32/tests/listview.c
index 6ef82bb359ae38e1bce3056f4502d2cfed812c06..4297e0b6dea168ed16576d5d519a46d7addd0d0f 100644
(file)
--- a/
dlls/comctl32/tests/listview.c
+++ b/
dlls/comctl32/tests/listview.c
@@
-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);