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

This commit is contained in:
Alexandre Julliard 2009-05-28 15:24:04 +02:00
parent 23fd37528c
commit 448d48c3f4
1 changed files with 1 additions and 1 deletions

View File

@ -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;