wxX11: don't call CleanUp() from wxApp::Exit()

This is not done in any other ports and shouldn't be necessary in this
one neither, CleanUp() will be called from wxEntryCleanup() later
anyhow.
This commit is contained in:
Vadim Zeitlin 2024-01-30 20:36:41 +01:00
parent 6636a2ac9e
commit c965c87290
2 changed files with 0 additions and 10 deletions

View file

@ -41,8 +41,6 @@ public:
// override base class (pure) virtuals // override base class (pure) virtuals
// ----------------------------------- // -----------------------------------
virtual void Exit();
virtual void WakeUpIdle(); virtual void WakeUpIdle();
virtual bool OnInitGui(); virtual bool OnInitGui();

View file

@ -789,11 +789,3 @@ Window wxGetWindowParent(Window window)
return (Window) 0; return (Window) 0;
#endif #endif
} }
void wxApp::Exit()
{
wxApp::CleanUp();
wxAppConsole::Exit();
}