From: Vadim Zeitlin Date: Fri, 21 Aug 2009 18:46:32 +0000 (+0000) Subject: Fix typo in wxNewEventFunctor() comment. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c0f02dab276d6e0db31b060c070c71b6d7543d96 Fix typo in wxNewEventFunctor() comment. Closes #11117. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61730 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/event.h b/include/wx/event.h index 0a757f6a2f..21936ccaa1 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -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 a 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).