X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/62a879dfa0127253c7d095ed725a89465517bede..2b84e565c6c26711e245bab5d4ce0fe1fe3e4078:/include/wx/choice.h diff --git a/include/wx/choice.h b/include/wx/choice.h index a8743fbb27..6110e4b35b 100644 --- a/include/wx/choice.h +++ b/include/wx/choice.h @@ -20,6 +20,8 @@ #pragma interface "choicebase.h" #endif +#if wxUSE_CHOICE + #include "wx/ctrlsub.h" // the base class // ---------------------------------------------------------------------------- @@ -36,7 +38,7 @@ class WXDLLEXPORT wxChoiceBase : public wxControlWithItems { public: // all generic methods are in wxControlWithItems -#ifdef __WXMAC_X__ +#ifdef __DARWIN__ virtual ~wxChoiceBase() {} #endif @@ -61,14 +63,14 @@ public: // 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__) @@ -77,5 +79,7 @@ public: #include "wx/stubs/choice.h" #endif +#endif // wxUSE_CHOICE + #endif // _WX_CHOICE_H_BASE_