From d9409eb3241a616c77d59dd176ae8539604af974 Mon Sep 17 00:00:00 2001 From: Jaakko Salli Date: Fri, 12 Jun 2009 14:01:51 +0000 Subject: [PATCH] Added missing virtual dtor for wxPGMultiButton git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_9_0_BRANCH@61018 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/propgrid/editors.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/wx/propgrid/editors.h b/include/wx/propgrid/editors.h index cf81fcee2b..37c22eb99e 100644 --- a/include/wx/propgrid/editors.h +++ b/include/wx/propgrid/editors.h @@ -495,6 +495,7 @@ class WXDLLIMPEXP_PROPGRID wxPGMultiButton : public wxWindow { public: wxPGMultiButton( wxPropertyGrid* pg, const wxSize& sz ); + virtual ~wxPGMultiButton() {} wxWindow* GetButton( unsigned int i ) { return (wxWindow*) m_buttons[i]; } const wxWindow* GetButton( unsigned int i ) const