Remove a stray 'else' left by a previous patch.

This commit is contained in:
Dmitry Timoshkov 2004-09-15 18:03:15 +00:00 committed by Alexandre Julliard
parent 79418b45f0
commit ca27b29f92

View file

@ -711,7 +711,7 @@ static BOOL fixup_flags( WINDOWPOS *winpos )
if ((wndPtr->rectWindow.left == winpos->x) && (wndPtr->rectWindow.top == winpos->y))
winpos->flags |= SWP_NOMOVE; /* Already the right position */
else if ((wndPtr->dwStyle & (WS_POPUP | WS_CHILD)) != WS_CHILD)
if ((wndPtr->dwStyle & (WS_POPUP | WS_CHILD)) != WS_CHILD)
{
if (!(winpos->flags & SWP_NOACTIVATE)) /* Bring to the top when activating */
{