]> git.saurik.com Git - wxWidgets.git/commitdiff
added missing destructor for Mac OS X compilation
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 8 Jul 2001 15:36:31 +0000 (15:36 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 8 Jul 2001 15:36:31 +0000 (15:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gauge.h

index 884f126b84d9673a91aff7287e6880cbee1b1d53..8177c3de275338415a6cd48bf443ce5448746478 100644 (file)
@@ -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,