add references to OnEventLoopEnter/Exit callbacks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59189 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi 2009-02-27 14:49:00 +00:00
parent d455444a8b
commit 4623dc32fc

View 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);