X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0599486175c95fd5576c2c60687c5b58db2f4619..8258c3ddbdd9dcfa2c8ea05c8dee702a096ff7e3:/docs/latex/wx/event.tex diff --git a/docs/latex/wx/event.tex b/docs/latex/wx/event.tex index b5e7be46d0..0024a921fb 100644 --- a/docs/latex/wx/event.tex +++ b/docs/latex/wx/event.tex @@ -82,7 +82,7 @@ event, if any. \func{WXTYPE}{GetEventType}{\void} Returns the identifier of the given event type, -such as wxEVENT\_TYPE\_BUTTON\_COMMAND. +such as \texttt{wxEVT\_COMMAND\_BUTTON\_CLICKED}. \membersection{wxEvent::GetId}\label{wxeventgetid} @@ -156,10 +156,10 @@ is currently greater than $0$. Called by an event handler, it controls whether additional event handlers bound to this event will be called after the current event -handler returns. Skip(false) (the default setting) will prevent +handler returns. Skip(false) (the default behavior) will prevent additional event handlers from being called and control will be returned to the sender of the event immediately after the current -handler has finished. Skip(True) will cause the event processing +handler has finished. Skip(true) will cause the event processing system to continue searching for a handler function for this event.