comctl32/tests: Use the SendMessage instead of ListView_Scroll.

This commit is contained in:
Michael Stefaniuc 2010-03-26 00:22:22 +01:00 committed by Alexandre Julliard
parent eb064db083
commit 0c2ec54535
1 changed files with 2 additions and 2 deletions

View File

@ -2135,7 +2135,7 @@ todo_wine
expect(100, rect.left);
expect(250, rect.right);
ListView_Scroll(hwnd, 10, 0);
SendMessage(hwnd, LVM_SCROLL, 10, 0);
rect.left = LVIR_BOUNDS;
rect.top = 1;
@ -2145,7 +2145,7 @@ todo_wine
expect(90, rect.left);
expect(240, rect.right);
ListView_Scroll(hwnd, -10, 0);
SendMessage(hwnd, LVM_SCROLL, -10, 0);
DestroyWindow(hwnd);