Commit 0c2ec545 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

comctl32/tests: Use the SendMessage instead of ListView_Scroll.

parent eb064db0
...@@ -2135,7 +2135,7 @@ todo_wine ...@@ -2135,7 +2135,7 @@ todo_wine
expect(100, rect.left); expect(100, rect.left);
expect(250, rect.right); expect(250, rect.right);
ListView_Scroll(hwnd, 10, 0); SendMessage(hwnd, LVM_SCROLL, 10, 0);
rect.left = LVIR_BOUNDS; rect.left = LVIR_BOUNDS;
rect.top = 1; rect.top = 1;
...@@ -2145,7 +2145,7 @@ todo_wine ...@@ -2145,7 +2145,7 @@ todo_wine
expect(90, rect.left); expect(90, rect.left);
expect(240, rect.right); expect(240, rect.right);
ListView_Scroll(hwnd, -10, 0); SendMessage(hwnd, LVM_SCROLL, -10, 0);
DestroyWindow(hwnd); DestroyWindow(hwnd);
......
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