Commit 4684ab1c authored by François Gouget's avatar François Gouget Committed by Alexandre Julliard

ListView_GetItemRect already sets rc.left.

parent b99367e2
......@@ -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);
}
}
......
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