X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fedec9812667b3f11c40d7d9be1e2e1c71ab41fa..91116345459337f3fc10fa60ad96d770d41569eb:/include/wx/app.h diff --git a/include/wx/app.h b/include/wx/app.h index 7c2b61c4e3..f172a41422 100644 --- a/include/wx/app.h +++ b/include/wx/app.h @@ -380,10 +380,6 @@ public: // stop the program immediately!) virtual void ExitMainLoop(); - // returns true if the program is initialized, i.e. OnInit() has been - // completed successfully - virtual bool Initialized() = 0; - // returns TRUE if there are unprocessed events in the event queue virtual bool Pending(); @@ -491,6 +487,11 @@ public: // deactivated virtual void SetActive(bool isActive, wxWindow *lastFocus); + // OBSOLETE: don't use, always returns true + // + // returns true if the program is successfully initialized + bool Initialized() { return true; } + protected: // delete all objects in wxPendingDelete list