From fde702ea51ad0b5e0c5a0646df7854768d9170a3 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 17 Nov 2009 14:47:56 +0000 Subject: [PATCH] Fix typo in Bind() documentation: s/binded/bound/ Closes #11450. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62672 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/event.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/wx/event.h b/interface/wx/event.h index 5afe41d6ec..769d289c0d 100644 --- a/interface/wx/event.h +++ b/interface/wx/event.h @@ -467,11 +467,11 @@ public: the function skips to step (7). -# TryBefore() is called (this is where wxValidator are taken into account for wxWindow objects). If this returns @true, the function exits. - -# Dynamic event table of the handlers binded using Bind<>() is + -# Dynamic event table of the handlers bound using Bind<>() is searched. If a handler is found, it is executed and the function returns @true unless the handler used wxEvent::Skip() to indicate that it didn't handle the event in which case the search continues. - -# Static events table of the handlers binded using event table + -# Static events table of the handlers bound using event table macros is searched for this event handler. If this fails, the base class event table table is tried, and so on until no more tables exist or an appropriate function was found. If a handler is found, @@ -839,7 +839,7 @@ public: This method can only unbind functions, functors or methods which have been added using the Bind<>() method. There is no way to unbind - functions binded using the (static) event tables. + functions bound using the (static) event tables. @param eventType The event type associated with this event handler. -- 2.45.2