Commit 656f3f5b authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

comctl32/listbox: Remove duplicated condition.

parent a27db516
...@@ -490,8 +490,8 @@ static INT LISTBOX_GetItemFromPoint( const LB_DESCR *descr, INT x, INT y ) ...@@ -490,8 +490,8 @@ static INT LISTBOX_GetItemFromPoint( const LB_DESCR *descr, INT x, INT y )
static void LISTBOX_PaintItem( LB_DESCR *descr, HDC hdc, const RECT *rect, static void LISTBOX_PaintItem( LB_DESCR *descr, HDC hdc, const RECT *rect,
INT index, UINT action, BOOL ignoreFocus ) INT index, UINT action, BOOL ignoreFocus )
{ {
BOOL selected = FALSE, focused;
LB_ITEMDATA *item = NULL; LB_ITEMDATA *item = NULL;
BOOL selected = FALSE;
if (index < descr->nb_items) if (index < descr->nb_items)
{ {
...@@ -499,6 +499,8 @@ static void LISTBOX_PaintItem( LB_DESCR *descr, HDC hdc, const RECT *rect, ...@@ -499,6 +499,8 @@ static void LISTBOX_PaintItem( LB_DESCR *descr, HDC hdc, const RECT *rect,
selected = is_item_selected(descr, index); selected = is_item_selected(descr, index);
} }
focused = !ignoreFocus && descr->focus_item == index && descr->caret_on && descr->in_focus;
if (IS_OWNERDRAW(descr)) if (IS_OWNERDRAW(descr))
{ {
DRAWITEMSTRUCT dis; DRAWITEMSTRUCT dis;
...@@ -530,9 +532,8 @@ static void LISTBOX_PaintItem( LB_DESCR *descr, HDC hdc, const RECT *rect, ...@@ -530,9 +532,8 @@ static void LISTBOX_PaintItem( LB_DESCR *descr, HDC hdc, const RECT *rect,
dis.itemState = 0; dis.itemState = 0;
if (selected) if (selected)
dis.itemState |= ODS_SELECTED; dis.itemState |= ODS_SELECTED;
if (!ignoreFocus && (descr->focus_item == index) && if (focused)
(descr->caret_on) && dis.itemState |= ODS_FOCUS;
(descr->in_focus)) dis.itemState |= ODS_FOCUS;
if (!IsWindowEnabled(descr->self)) dis.itemState |= ODS_DISABLED; if (!IsWindowEnabled(descr->self)) dis.itemState |= ODS_DISABLED;
dis.itemData = item->data; dis.itemData = item->data;
dis.rcItem = *rect; dis.rcItem = *rect;
...@@ -582,9 +583,8 @@ static void LISTBOX_PaintItem( LB_DESCR *descr, HDC hdc, const RECT *rect, ...@@ -582,9 +583,8 @@ static void LISTBOX_PaintItem( LB_DESCR *descr, HDC hdc, const RECT *rect,
SetBkColor( hdc, oldBk ); SetBkColor( hdc, oldBk );
SetTextColor( hdc, oldText ); SetTextColor( hdc, oldText );
} }
if (!ignoreFocus && (descr->focus_item == index) && if (focused)
(descr->caret_on) && DrawFocusRect( hdc, rect );
(descr->in_focus)) DrawFocusRect( hdc, rect );
} }
} }
......
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