]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/choice.h
implement out-of-line destructors where needed instead of using __DARWIN__
[wxWidgets.git] / include / wx / choice.h
index 6110e4b35b60588ff6782103313c22d504a476b7..6664996a0b9f94d20f887ab4f3b07ac749f45803 100644 (file)
@@ -38,9 +38,7 @@ class WXDLLEXPORT wxChoiceBase : public wxControlWithItems
 {
 public:
     // all generic methods are in wxControlWithItems
-#ifdef __DARWIN__
-    virtual ~wxChoiceBase() {}
-#endif
+    virtual ~wxChoiceBase();
 
     // single selection logic
     virtual void SetSelection(int n) = 0;
@@ -56,7 +54,6 @@ public:
 
     // emulate selecting the item event.GetInt()
     void Command(wxCommandEvent& event);
-
 };
 
 // ----------------------------------------------------------------------------