Commit 448d48c3 authored by Alexandre Julliard's avatar Alexandre Julliard

comctl32/tests: Replace a listview macro by an explicit SendMessage.

parent 23fd3752
......@@ -1745,7 +1745,7 @@ todo_wine
item.stateMask = LVIS_SELECTED;
r = SendMessage(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
expect(TRUE, r);
ListView_SetSelectionMark(hwnd, -1);
SendMessage(hwnd, LVM_SETSELECTIONMARK, 0, -1);
item.stateMask = LVIS_SELECTED;
item.state = LVIS_SELECTED;
......
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