From ca27b29f92cc3c58ff16e3ee8b1a1e0a475dbea9 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Wed, 15 Sep 2004 18:03:15 +0000 Subject: [PATCH] Remove a stray 'else' left by a previous patch. --- dlls/x11drv/winpos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/x11drv/winpos.c b/dlls/x11drv/winpos.c index c0a95dae177..91e04b9fb58 100644 --- a/dlls/x11drv/winpos.c +++ b/dlls/x11drv/winpos.c @@ -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 */ {