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
This commit is contained in:
George Tasker 2001-11-22 14:03:40 +00:00
parent 0f71032121
commit beab584049

View File

@ -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 )