]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix typo in wxNewEventFunctor() comment.
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 21 Aug 2009 18:46:32 +0000 (18:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 21 Aug 2009 18:46:32 +0000 (18:46 +0000)
Closes #11117.

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

include/wx/event.h

index 0a757f6a2f7768e4514ab99d3a386f836a30fce6..21936ccaa1d920428b7b0b333adb33aff09917d3 100644 (file)
@@ -560,7 +560,7 @@ private:
 
 // Create functors for the templatized events, either allocated on the heap for
 // wxNewXXX() variants (this is needed in wxEvtHandler::Bind<>() to store them
-// in dynamic event table) or just by returning them as temporary objects (this
+// in dynamic event table) or just by returning them as temporary objects (this
 // is enough for Unbind<>() and we avoid unnecessary heap allocation like this).