Correct validator step description in event handling overview

The validator is still used even if the event handler is disabled.

Closes #17231.
This commit is contained in:
Vadim Zeitlin
2015-11-01 19:07:53 +01:00
parent 67004ff75f
commit a916a0cc48

View File

@@ -438,14 +438,14 @@ doesn't count as having handled the event and the search continues):
</li> </li>
<li value="1"> <li value="1">
If this event handler is disabled via a call to If the object is a wxWindow and has an associated validator, wxValidator
wxEvtHandler::SetEvtHandlerEnabled() the next three steps are skipped and gets a chance to process the event.
the event handler resumes at step (5).
</li> </li>
<li value="2"> <li value="2">
If the object is a wxWindow and has an associated validator, wxValidator If this event handler is disabled via a call to
gets a chance to process the event. wxEvtHandler::SetEvtHandlerEnabled() the two next steps are skipped and
the event handler resumes at step (5).
</li> </li>
<li value="3"> <li value="3">