From 4eda9c09e420fac83871eaf238eef4e526cd9d4a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 22 Sep 2008 00:49:34 +0000 Subject: [PATCH] no changes, just some markup fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55788 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/doxygen/overviews/eventhandling.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/doxygen/overviews/eventhandling.h b/docs/doxygen/overviews/eventhandling.h index 5d7385cb1e..9618a50ee0 100644 --- a/docs/doxygen/overviews/eventhandling.h +++ b/docs/doxygen/overviews/eventhandling.h @@ -272,11 +272,12 @@ Now let us describe the semantic differences: NULL, // unused extra data parameter this); // this indicates the object to connect to } - @endcode will work exactly as expected. Note that you can get the - object which generated the event -- and which is not the same as the - frame -- via wxEvent::GetEventObject() method of @c event argument - passed to the event handler. -
  • + @endcode + will work exactly as expected. Note that you can get the object which + generated the event -- and which is not the same as the frame -- via + wxEvent::GetEventObject() method of @c event argument passed to the + event handler. +
  • To summarize, using Connect() requires slightly more typing but is much more @@ -296,7 +297,7 @@ wxEvtHandler::ProcessEvent() on the first event handler object belonging to the window generating the event. The normal order of event table searching by ProcessEvent() is as follows, with the event processing stopping as soon as a handler is found (unless the handler calls wxEvent::Skip() in which case it -doesn't count as having handled the event): +doesn't count as having handled the event and the search continues):
    1. Before anything else happens, wxApp::FilterEvent() is called. If it returns @@ -350,7 +351,7 @@ doesn't count as having handled the event):
    -Please pay close attention to step 6!. People often overlook or get +Please pay close attention to step 6! People often overlook or get confused by this powerful feature of the wxWidgets event processing system. The details of event propagation upwards the window hierarchy are described in the next section. -- 2.45.2