From 402dc20e1f4cfedf9460dd40f56d749c944f5071 Mon Sep 17 00:00:00 2001 From: Dan Langlois Date: Sat, 31 Jul 1999 12:58:04 +0000 Subject: [PATCH] Removed an inappropriate if statement from MDI_ChildActivate that prevented the activation code from executing. --- windows/mdi.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/windows/mdi.c b/windows/mdi.c index 6e58b1f906a..e3674e8a421 100644 --- a/windows/mdi.c +++ b/windows/mdi.c @@ -557,12 +557,6 @@ static LONG MDI_ChildActivate( WND *clientPtr, HWND hWndChild ) BOOL isActiveFrameWnd = 0; LONG retvalue; - if( hWndChild == prevActiveWnd ) - { - retvalue = 0L; - goto END; - } - if( wndPtr ) { if( wndPtr->dwStyle & WS_DISABLED )