From beab58404916eb19b2c243c5ca19b3531ea7fef0 Mon Sep 17 00:00:00 2001 From: George Tasker Date: Thu, 22 Nov 2001 14:03:40 +0000 Subject: [PATCH] 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 --- contrib/include/wx/fl/controlbar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 )