comctl32/listview: Remove duplicated expression.

This commit is contained in:
Nikolay Sivov 2009-05-25 00:02:14 +04:00 committed by Alexandre Julliard
parent 7434b8002c
commit 1ce2797c2f
1 changed files with 1 additions and 1 deletions

View File

@ -1817,7 +1817,7 @@ static void LISTVIEW_ShowFocusRect(const LISTVIEW_INFO *infoPtr, BOOL fShow)
if (infoPtr->nFocusedItem < 0) return;
/* we need some gymnastics in ICON mode to handle large items */
if ( (infoPtr->dwStyle & LVS_TYPEMASK) == LVS_ICON )
if (uView == LVS_ICON)
{
RECT rcBox;