]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix typo in Bind() documentation: s/binded/bound/
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 17 Nov 2009 14:47:56 +0000 (14:47 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 17 Nov 2009 14:47:56 +0000 (14:47 +0000)
Closes #11450.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62672 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/event.h

index 5afe41d6ec746485dfec054aa6a885662e1d0c18..769d289c0d0607588a7d745e848ba00c5932f2ef 100644 (file)
@@ -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.