Doc fixes A-M edition. Thanks to Arnout for pointing these out. Also I fixed some others as I went along...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31801 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2005-02-06 17:27:04 +00:00
parent 3f029bd314
commit f6e9a8189c
29 changed files with 59 additions and 208 deletions

View File

@@ -53,34 +53,6 @@ Constructs a wxModule object.
Destructor.
\membersection{wxModule::CleanupModules}\label{wxmodulecleanupmodules}
\func{static void}{CleanupModules}{\void}
Calls Exit for each module instance. Called by wxWidgets on exit, so there is no
need for an application to call it.
\membersection{wxModule::Exit}\label{wxmoduleexit}
\func{void}{Exit}{\void}
Calls OnExit. This function is called by wxWidgets and should not need to be called
by an application.
\membersection{wxModule::Init}\label{wxmoduleinit}
\func{bool}{Init}{\void}
Calls OnInit. This function is called by wxWidgets and should not need to be called
by an application.
\membersection{wxModule::InitializeModules}\label{wxmoduleinitializemodules}
\func{static bool}{InitializeModules}{\void}
Calls Init for each module instance. Called by wxWidgets on startup, so there is no
need for an application to call it.
\membersection{wxModule::OnExit}\label{wxmoduleonexit}
\func{virtual void}{OnExit}{\void}
@@ -94,17 +66,3 @@ Provide this function with appropriate cleanup for your module.
Provide this function with appropriate initialization for your module. If the function
returns false, wxWidgets will exit immediately.
\membersection{wxModule::RegisterModule}\label{wxmoduleregistermodule}
\func{static void}{RegisterModule}{\param{wxModule*}{ module}}
Registers this module with wxWidgets. Called by wxWidgets on startup, so there is no
need for an application to call it.
\membersection{wxModule::RegisterModules}\label{wxmoduleregistermodules}
\func{static bool}{RegisterModules}{\void}
Creates instances of and registers all modules. Called by wxWidgets on startup, so there is no
need for an application to call it.