Commit 092263f0 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

comctl32/listview: Set LVIS_FOCUSED for all items with LVM_SETITEMSTATE not allowed.

parent 440218cf
......@@ -8108,6 +8108,9 @@ static BOOL LISTVIEW_SetItemState(LISTVIEW_INFO *infoPtr, INT nItem, const LVITE
if ((lvItem.state & lvItem.stateMask & LVIS_SELECTED) && (infoPtr->dwStyle & LVS_SINGLESEL))
return FALSE;
/* focus all isn't allowed */
if (lvItem.state & lvItem.stateMask & LVIS_FOCUSED) return FALSE;
/* apply to all items */
for (lvItem.iItem = 0; lvItem.iItem < infoPtr->nItemCount; lvItem.iItem++)
if (!LISTVIEW_SetItemT(infoPtr, &lvItem, TRUE)) bResult = FALSE;
......
......@@ -2547,10 +2547,10 @@ static void test_ownerdata(void)
item.state = LVIS_FOCUSED;
g_dump_itemchanged = TRUE;
res = SendMessageA(hwnd, LVM_SETITEMSTATE, -1, (LPARAM)&item);
todo_wine expect(FALSE, res);
expect(FALSE, res);
g_dump_itemchanged = FALSE;
ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq,
"ownerdata focus all notification", TRUE);
"ownerdata focus all notification", FALSE);
/* focus single item, remove all */
item.stateMask = LVIS_FOCUSED;
item.state = LVIS_FOCUSED;
......
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