// wxYield
//-----------------------------------------------------------------------------
+// not static because used by textctrl.cpp
+//
+// MT-FIXME
+bool wxIsInsideYield = FALSE;
+
bool wxApp::Yield(bool onlyIfNeeded)
{
- // MT-FIXME
- static bool s_inYield = FALSE;
-
- if ( s_inYield )
+ if ( wxIsInsideYield )
{
if ( !onlyIfNeeded )
{
}
#endif // wxUSE_THREADS
- s_inYield = TRUE;
+ wxIsInsideYield = TRUE;
if (!g_isIdle)
{
// let the logs be flashed again
wxLog::Resume();
- s_inYield = FALSE;
+ wxIsInsideYield = FALSE;
return TRUE;
}
if ( retValue == 0 )
{
- /* delete pending toplevel windows (typically a single
- dialog) so that, if there isn't any left, we don't
- call OnRun() */
+ // Delete pending toplevel windows
wxTheApp->DeletePendingObjects();
- wxTheApp->m_initialized = wxTopLevelWindows.GetCount() != 0;
+ // When is the app not initialized ?
+ wxTheApp->m_initialized = TRUE;
if (wxTheApp->Initialized())
{
wxTheApp->OnRun();
wxWindow *topWindow = wxTheApp->GetTopWindow();
+
+ // Delete all pending windows if any
+ wxTheApp->DeletePendingObjects();
+
+ // Reset top window
if (topWindow)
- {
- /* Forcibly delete the window. */
- if (topWindow->IsKindOf(CLASSINFO(wxFrame)) ||
- topWindow->IsKindOf(CLASSINFO(wxDialog)) )
- {
- topWindow->Close( TRUE );
- wxTheApp->DeletePendingObjects();
- }
- else
- {
- delete topWindow;
- wxTheApp->SetTopWindow( (wxWindow*) NULL );
- }
- }
+ wxTheApp->SetTopWindow( (wxWindow*) NULL );
retValue = wxTheApp->OnExit();
}