ListView_GetItemRect already sets rc.left.

This commit is contained in:
François Gouget 2001-02-14 21:42:24 +00:00 committed by Alexandre Julliard
parent b99367e20e
commit 4684ab1c12
1 changed files with 1 additions and 2 deletions

View File

@ -7442,8 +7442,7 @@ static LRESULT LISTVIEW_Update(HWND hwnd, INT nItem)
else
{
/* get item bounding rectangle */
rc.left = LVIR_BOUNDS;
ListView_GetItemRect(hwnd, nItem, &rc, rc.left);
ListView_GetItemRect(hwnd, nItem, &rc, LVIR_BOUNDS);
InvalidateRect(hwnd, &rc, TRUE);
}
}