From: Gilles Depeyrot Date: Sun, 8 Jul 2001 15:36:31 +0000 (+0000) Subject: added missing destructor for Mac OS X compilation X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5051902e561cc97c6bb06a6c80a23ed852da8c5e added missing destructor for Mac OS X compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/gauge.h b/include/wx/gauge.h index 884f126b84..8177c3de27 100644 --- a/include/wx/gauge.h +++ b/include/wx/gauge.h @@ -31,6 +31,9 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxGaugeNameStr; class WXDLLEXPORT wxGaugeBase : public wxControl { public: +#ifdef __WXMAC_X__ + virtual ~wxGaugeBase() { } +#endif bool Create(wxWindow *parent, wxWindowID id, int range,