X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fa7e10a43f50d03c5cc64883724604b69bd712e0..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/init.h diff --git a/interface/wx/init.h b/interface/wx/init.h index 7e955d0133..23404f6ff1 100644 --- a/interface/wx/init.h +++ b/interface/wx/init.h @@ -2,8 +2,7 @@ // Name: init.h // Purpose: interface of global functions // Author: wxWidgets team -// RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -13,7 +12,7 @@ Create an object of this class on the stack to initialize/cleanup the library automatically. - @library{base} + @library{wxbase} @category{appmanagement} @see wxGLContext @@ -41,7 +40,7 @@ public: -/** @ingroup group_funcmacro_appinitterm */ +/** @addtogroup group_funcmacro_appinitterm */ //@{ /** @@ -51,7 +50,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 +89,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.