Commit 9c11c636 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

comctl32: Clarify a comment.

parent 5f9f827f
...@@ -1379,9 +1379,7 @@ static LRESULT COMBOEX_DrawItem (COMBOEX_INFO *infoPtr, DRAWITEMSTRUCT const *di ...@@ -1379,9 +1379,7 @@ static LRESULT COMBOEX_DrawItem (COMBOEX_INFO *infoPtr, DRAWITEMSTRUCT const *di
} else { } else {
/* drawing combo/edit entry */ /* drawing combo/edit entry */
if (IsWindowVisible(infoPtr->hwndEdit)) { if (IsWindowVisible(infoPtr->hwndEdit)) {
/* if we have an edit control, the slave the /* if we have an edit control, set the selection state from the edit focus state */
* selection state to the Edit focus state
*/
if (infoPtr->flags & WCBE_EDITFOCUSED) if (infoPtr->flags & WCBE_EDITFOCUSED)
drawstate = ILD_SELECTED; drawstate = ILD_SELECTED;
} else } else
......
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