Fix manual references to the events overview after it's page ID was changed in r58712 (VZ).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58978 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bryan Petty
2009-02-18 00:19:22 +00:00
parent cb2996e2ce
commit 830b7aa7b2
18 changed files with 19 additions and 18 deletions

View File

@@ -1702,7 +1702,7 @@ public:
Removes and returns the top-most event handler on the event handler stack.
E.g. in the case of:
@image html overview_eventhandling_winstack.png
@image html overview_events_winstack.png
when calling @c W->PopEventHandler(), the event handler @c A will be
removed and @c B will be the first handler of the stack.
@@ -1737,7 +1737,7 @@ public:
W->PushEventHandler(B);
@endcode
you will end up with the following situation:
@image html overview_eventhandling_winstack.png
@image html overview_events_winstack.png
Note that you can use wxWindow::PopEventHandler to remove the event handler.