X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e6feb95a79834836e88143b15d9f424ebe79621..1a6a6043f79b8b12958e6cb09d443213a969507d:/include/wx/choice.h diff --git a/include/wx/choice.h b/include/wx/choice.h index c119563736..6664996a0b 100644 --- a/include/wx/choice.h +++ b/include/wx/choice.h @@ -38,9 +38,7 @@ class WXDLLEXPORT wxChoiceBase : public wxControlWithItems { public: // all generic methods are in wxControlWithItems -#ifdef __WXMAC_X__ - virtual ~wxChoiceBase() {} -#endif + virtual ~wxChoiceBase(); // single selection logic virtual void SetSelection(int n) = 0; @@ -56,21 +54,20 @@ public: // emulate selecting the item event.GetInt() void Command(wxCommandEvent& event); - }; // ---------------------------------------------------------------------------- // include the platform-dependent class definition // ---------------------------------------------------------------------------- -#if defined(__WXMSW__) +#if defined(__WXUNIVERSAL__) + #include "wx/univ/choice.h" +#elif defined(__WXMSW__) #include "wx/msw/choice.h" #elif defined(__WXMOTIF__) #include "wx/motif/choice.h" #elif defined(__WXGTK__) #include "wx/gtk/choice.h" -#elif defined(__WXQT__) - #include "wx/qt/choice.h" #elif defined(__WXMAC__) #include "wx/mac/choice.h" #elif defined(__WXPM__)