comctl32/listview: Fix incorrect message parameters.

This commit is contained in:
Daniel Jelinski 2013-02-20 22:36:23 +01:00 committed by Alexandre Julliard
parent de852879d1
commit 75d774a43b
1 changed files with 2 additions and 2 deletions

View File

@ -3549,8 +3549,8 @@ static BOOL LISTVIEW_AddGroupSelection(LISTVIEW_INFO *infoPtr, INT nItem)
ZeroMemory(&nmlv, sizeof(nmlv));
nmlv.iFrom = nFirst;
nmlv.iTo = nLast;
nmlv.uNewState = 0;
nmlv.uOldState = item.state;
nmlv.uOldState = 0;
nmlv.uNewState = item.state;
notify_hdr(infoPtr, LVN_ODSTATECHANGED, (LPNMHDR)&nmlv);
if (!IsWindow(hwndSelf))