mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:13:56 +00:00
ListView_GetItemRect already sets rc.left.
This commit is contained in:
parent
b99367e20e
commit
4684ab1c12
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue