]> git.saurik.com Git - wxWidgets.git/commitdiff
add references to OnEventLoopEnter/Exit callbacks
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Fri, 27 Feb 2009 14:49:00 +0000 (14:49 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Fri, 27 Feb 2009 14:49:00 +0000 (14:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59189 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/app.h

index f664be76f9a942d1c0ebeb6757f420c86bdf09b1..4652096e3fb427533cfb4520527cb097dd31072f 100644 (file)
@@ -269,12 +269,16 @@ public:
         Note that this function is called whenever an event loop is activated;
         you may want to use wxEventLoopBase::IsMain() to perform initialization
         specific for the app's main event loop.
+
+        @see OnEventLoopExit()
     */
     virtual void OnEventLoopEnter(wxEventLoopBase* loop);
 
     /**
         Called by wxEventLoopBase::OnExit() for each event loop which
         is exited.
+
+        @see OnEventLoopEnter()
     */
     virtual void OnEventLoopExit(wxEventLoopBase* loop);