In LISTVIEW_AddGroupSelection and LISTVIEW_SetGroupSelection, if no

selection mark has been set, just select the current item.
In LISTVIEW_SetGroupSelection we must also set the selection mark in
that case (and only in that case).
Removed a naughty ';' (spotted by Eric Pouech).
This commit is contained in:
Francois Gouget 2001-03-04 01:04:35 +00:00 committed by Alexandre Julliard
parent 8d0e1e767a
commit f45d56912a
1 changed files with 15 additions and 3 deletions

View File

@ -1538,11 +1538,14 @@ static VOID LISTVIEW_AddGroupSelection(HWND hwnd, INT nItem)
INT i;
LVITEMA item;
if (nFirst == -1)
nFirst = nItem;
ZeroMemory(&item,sizeof(LVITEMA));
item.stateMask = LVIS_SELECTED;
item.state = LVIS_SELECTED;
for (i = nFirst; i <= nLast; i++);
for (i = nFirst; i <= nLast; i++)
{
LISTVIEW_SetItemState(hwnd,i,&item);
}
@ -1679,8 +1682,17 @@ static VOID LISTVIEW_SetGroupSelection(HWND hwnd, INT nItem)
if ((uView == LVS_LIST) || (uView == LVS_REPORT))
{
INT i;
INT nFirst = min(infoPtr->nSelectionMark, nItem);
INT nLast = max(infoPtr->nSelectionMark, nItem);
INT nFirst, nLast;
if (infoPtr->nSelectionMark == -1)
{
infoPtr->nSelectionMark = nFirst = nLast = nItem;
}
else
{
nFirst = min(infoPtr->nSelectionMark, nItem);
nLast = max(infoPtr->nSelectionMark, nItem);
}
for (i = 0; i <= GETITEMCOUNT(infoPtr); i++)
{