git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44493
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if ( !wxEventLoop::GetActive() )
return DoSimpleWaitForThread(hThread);
if ( !wxEventLoop::GetActive() )
return DoSimpleWaitForThread(hThread);
+ const DWORD wakeMask =
+ QS_ALLINPUT // return as soon as there are any events
+#if !defined(__WXWINCE__)
+ | QS_ALLPOSTMESSAGE
+#endif
+ ;
+
return ::MsgWaitForMultipleObjects
(
1, // number of objects to wait for
(HANDLE *)&hThread, // the objects
false, // wait for any objects, not all
INFINITE, // no timeout
return ::MsgWaitForMultipleObjects
(
1, // number of objects to wait for
(HANDLE *)&hThread, // the objects
false, // wait for any objects, not all
INFINITE, // no timeout
- QS_ALLINPUT | // return as soon as there are any events
- QS_ALLPOSTMESSAGE
void wxTopLevelWindowMSW::DoGetPosition(int *x, int *y) const
{
void wxTopLevelWindowMSW::DoGetPosition(int *x, int *y) const
{
if ( IsIconized() )
{
WINDOWPLACEMENT wp;
if ( IsIconized() )
{
WINDOWPLACEMENT wp;
wxTopLevelWindowBase::DoGetPosition(x, y);
}
void wxTopLevelWindowMSW::DoGetSize(int *width, int *height) const
{
wxTopLevelWindowBase::DoGetPosition(x, y);
}
void wxTopLevelWindowMSW::DoGetSize(int *width, int *height) const
{
if ( IsIconized() )
{
WINDOWPLACEMENT wp;
if ( IsIconized() )
{
WINDOWPLACEMENT wp;
wxTopLevelWindowBase::DoGetSize(width, height);
}
wxTopLevelWindowBase::DoGetSize(width, height);
}