]> git.saurik.com Git - wxWidgets.git/commitdiff
Mention that some functions are virtual - I'm pretty sure I didn't get all of them...
authorRyan Norton <wxprojects@comcast.net>
Thu, 23 Sep 2004 23:33:14 +0000 (23:33 +0000)
committerRyan Norton <wxprojects@comcast.net>
Thu, 23 Sep 2004 23:33:14 +0000 (23:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29300 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/app.tex

index d230d5d265ee4ca5dbb75dd50c1e361676950259..9c5457aba16c62875eb48e24cdb483f3236eba45 100644 (file)
@@ -76,7 +76,7 @@ implementation returns a new wxLogGui class.
 
 \membersection{wxApp::Dispatch}\label{wxappdispatch}
 
-\func{void}{Dispatch}{\void}
+\func{virtual void}{Dispatch}{\void}
 
 Dispatches the next event in the windowing system event queue.
 
@@ -189,7 +189,7 @@ Returns the application's vendor name.
 
 \membersection{wxApp::ExitMainLoop}\label{wxappexitmainloop}
 
-\func{void}{ExitMainLoop}{\void}
+\func{virtual void}{ExitMainLoop}{\void}
 
 Call this to explicitly exit the main message (event) loop.
 You should normally exit the main loop (and the application) by deleting
@@ -198,7 +198,7 @@ the top window.
 
 \membersection{wxApp::MainLoop}\label{wxappmainloop}
 
-\func{int}{MainLoop}{\void}
+\func{virtual int}{MainLoop}{\void}
 
 Called by wxWidgets on creation of the application. Override this if you wish
 to provide your own (environment-dependent) main loop.
@@ -539,7 +539,7 @@ BOOL CTheApp::PreTranslateMessage(MSG *msg)
 
 \membersection{wxApp::Pending}\label{wxapppending}
 
-\func{bool}{Pending}{\void}
+\func{virtual bool}{Pending}{\void}
 
 Returns true if unprocessed events are in the window system event queue.