From a916a0cc48bd177bdee8862381779232a0fb5bd0 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 1 Nov 2015 19:07:53 +0100 Subject: [PATCH] Correct validator step description in event handling overview The validator is still used even if the event handler is disabled. Closes #17231. --- docs/doxygen/overviews/eventhandling.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/doxygen/overviews/eventhandling.h b/docs/doxygen/overviews/eventhandling.h index 6b1607bb07..9b9ea23cdd 100644 --- a/docs/doxygen/overviews/eventhandling.h +++ b/docs/doxygen/overviews/eventhandling.h @@ -438,14 +438,14 @@ doesn't count as having handled the event and the search continues):
  • - If this event handler is disabled via a call to - wxEvtHandler::SetEvtHandlerEnabled() the next three steps are skipped and - the event handler resumes at step (5). + If the object is a wxWindow and has an associated validator, wxValidator + gets a chance to process the event.
  • - If the object is a wxWindow and has an associated validator, wxValidator - gets a chance to process the event. + If this event handler is disabled via a call to + wxEvtHandler::SetEvtHandlerEnabled() the two next steps are skipped and + the event handler resumes at step (5).