From: George Tasker Date: Thu, 22 Nov 2001 14:03:40 +0000 (+0000) Subject: Added the missing keyword 'const' to the fix for virtual Clone() function X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/beab58404916eb19b2c243c5ca19b3531ea7fef0?ds=sidebyside Added the missing keyword 'const' to the fix for virtual Clone() function git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12593 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/include/wx/fl/controlbar.h b/contrib/include/wx/fl/controlbar.h index 83c3eaa5e3..91f712bd27 100644 --- a/contrib/include/wx/fl/controlbar.h +++ b/contrib/include/wx/fl/controlbar.h @@ -1099,7 +1099,7 @@ public: */ // Not used, but required - virtual wxEvent* Clone() { return NULL; } + virtual wxEvent* Clone() const { return NULL; } #if wxCHECK_VERSION(2,3,0) cbPluginEvent( wxEventType eventType, cbDockPane* pPane )