From: Vadim Zeitlin Date: Sat, 9 Jun 2001 21:38:00 +0000 (+0000) Subject: use SetForegroundWindow instead of BringWindowToTop X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/447002a13109caa3cba1c9b51e591cdb1b77d269?ds=sidebyside use SetForegroundWindow instead of BringWindowToTop git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10488 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index b296e289c1..fb93646628 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -446,7 +446,11 @@ bool wxWindow::Show(bool show) // Raise the window to the top of the Z order void wxWindow::Raise() { +#ifdef __WIN16__ ::BringWindowToTop(GetHwnd()); +#else // Win32 + ::SetForegroundWindow(GetHwnd()); +#endif } // Lower the window to the bottom of the Z order