diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 2f85b6ec26e..b6aca9166ff 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -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); } }