From 4623dc32fcbb11fafb90799c2074c9a4cdde436d Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Fri, 27 Feb 2009 14:49:00 +0000 Subject: [PATCH] add references to OnEventLoopEnter/Exit callbacks git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59189 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/app.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/interface/wx/app.h b/interface/wx/app.h index f664be76f9..4652096e3f 100644 --- a/interface/wx/app.h +++ b/interface/wx/app.h @@ -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);