From 9baa51e1c0145b193bec9e8e571072c4e6f9b4e7 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 30 May 2000 19:46:58 +0000 Subject: [PATCH] Use GetStartupInfoA() instead of accessing process structure directly. --- windows/win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/win.c b/windows/win.c index bdc8197dfa4..c6572af91e7 100644 --- a/windows/win.c +++ b/windows/win.c @@ -2393,7 +2393,7 @@ HWND WINAPI SetParent( HWND hwndChild, HWND hwndNewParent ) WM_WINDOWPOSCHANGED notification messages. */ SetWindowPos( hwndChild, HWND_TOPMOST, 0, 0, 0, 0, - SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOSIZE|((dwStyle & WS_VISIBLE)?SWP_SHOWWINDOW:0)); + SWP_NOMOVE|SWP_NOSIZE|((dwStyle & WS_VISIBLE)?SWP_SHOWWINDOW:0)); /* FIXME: a WM_MOVE is also generated (in the DefWindowProc handler * for WM_WINDOWPOSCHANGED) in Windows, should probably remove SWP_NOMOVE */ -- 2.11.4.GIT