wxBase/GUI separation: 1st step, wxMSW should build, all the rest is broken
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21342 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -887,9 +887,10 @@ void wxApp::OnIdle(wxIdleEvent& event)
|
||||
s_inOnIdle = FALSE;
|
||||
}
|
||||
|
||||
void wxWakeUpIdle()
|
||||
void wxApp::WakeUpIdle()
|
||||
{
|
||||
// **** please implement me! ****
|
||||
// TODO: use wxMotif implementation?
|
||||
|
||||
// Wake up the idle handler processor, even if it is in another thread...
|
||||
}
|
||||
|
||||
@@ -1061,18 +1062,11 @@ Window wxGetWindowParent(Window window)
|
||||
return (Window) 0;
|
||||
}
|
||||
|
||||
void wxExit()
|
||||
void wxApp::Exit()
|
||||
{
|
||||
int retValue = 0;
|
||||
if (wxTheApp)
|
||||
retValue = wxTheApp->OnExit();
|
||||
|
||||
wxApp::CleanUp();
|
||||
/*
|
||||
* Exit in some platform-specific way. Not recommended that the app calls this:
|
||||
* only for emergencies.
|
||||
*/
|
||||
exit(retValue);
|
||||
|
||||
wxAppConsole::Exit();
|
||||
}
|
||||
|
||||
// Yield to other processes
|
||||
|
Reference in New Issue
Block a user