X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e2c4ccaf8a7f03658a29ec4f4f2b71c95827e4ff..d3fa4bc22e84e3ca4d88cc1772f2d414140a1017:/interface/wx/init.h?ds=inline diff --git a/interface/wx/init.h b/interface/wx/init.h index ba876f1232..a673a0b7e0 100644 --- a/interface/wx/init.h +++ b/interface/wx/init.h @@ -3,7 +3,7 @@ // Purpose: interface of global functions // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -41,7 +41,7 @@ public: -/** @ingroup group_funcmacro_appinitterm */ +/** @addtogroup group_funcmacro_appinitterm */ //@{ /** @@ -51,7 +51,7 @@ public: If the function returns true, the initialization was successful and the global wxApp object ::wxTheApp has been created. Moreover, wxEntryCleanup() must be called afterwards. If the function returns false, a catastrophic - initialization error occured and (at least the GUI part of) the library + initialization error occurred and (at least the GUI part of) the library can't be used at all. Notice that parameters @c argc and @c argv may be modified by this @@ -90,7 +90,7 @@ void wxEntryCleanup(); Initialize the library (may be called as many times as needed, but each call to wxInitialize() must be matched by wxUninitialize()). - With this function you may avoid DECLARE_APP() and IMPLEMENT_APP() macros + With this function you may avoid wxDECLARE_APP() and wxIMPLEMENT_APP() macros and use wxInitialize() and wxUninitialize() dynamically in the program startup and termination.