From: Vadim Zeitlin Date: Sun, 20 Jul 2003 11:56:39 +0000 (+0000) Subject: prevent IsDialogMessage() from hanging in yet another case X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/82fee08622a295f000d766ca02a72e318a89d8b5?ds=inline prevent IsDialogMessage() from hanging in yet another case git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 51243e6392..a6f3d3a4c1 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -2010,7 +2010,10 @@ bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg) node; node = node->GetNext() ) { - if ( node->GetData()->AcceptsFocus() ) + wxWindow * const win = node->GetData(); + if ( win->AcceptsFocus() && + !(::GetWindowLong(GetHwndOf(win), GWL_EXSTYLE) & + WS_EX_CONTROLPARENT) ) { // it shouldn't hang... canSafelyCallIsDlgMsg = TRUE; @@ -2019,7 +2022,7 @@ bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg) } } } -#endif +#endif // !__WXWINCE__ if ( canSafelyCallIsDlgMsg ) {