X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/34138703c3997ce676a1e713d9ff9eb020640da7..8ffd43c56b793781fde046aa532340b92a0067eb:/include/wx/stubs/app.h?ds=inline diff --git a/include/wx/stubs/app.h b/include/wx/stubs/app.h index 3b1467fec5..67bceb9169 100644 --- a/include/wx/stubs/app.h +++ b/include/wx/stubs/app.h @@ -32,10 +32,6 @@ class WXDLLEXPORT wxLog; WXDLLEXPORT_DATA(extern wxApp*) wxTheApp; -void WXDLLEXPORT wxCleanUp(); -void WXDLLEXPORT wxCommonCleanUp(); // Call this from the platform's wxCleanUp() -void WXDLLEXPORT wxCommonInit(); // Call this from the platform's initialization - // Force an exit from main loop void WXDLLEXPORT wxExit(); @@ -59,7 +55,7 @@ class WXDLLEXPORT wxApp: public wxEvtHandler virtual bool Pending() ; virtual void Dispatch() ; - virtual void OnIdle(wxIdleEvent& event); + void OnIdle(wxIdleEvent& event); // Generic virtual bool OnInit() { return FALSE; }; @@ -132,8 +128,9 @@ protected: public: // Implementation - static void CommonInit(); - static void CommonCleanUp(); + static bool Initialize(); + static void CleanUp(); + void DeletePendingObjects(); bool ProcessIdle();