X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/62a879dfa0127253c7d095ed725a89465517bede..b88c44e735c80ecee8791f7560f5ee63dd9e9234:/include/wx/choice.h diff --git a/include/wx/choice.h b/include/wx/choice.h index a8743fbb27..b94a76c6e2 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 @@ -67,8 +69,6 @@ public: #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 +77,7 @@ public: #include "wx/stubs/choice.h" #endif +#endif // wxUSE_CHOICE + #endif // _WX_CHOICE_H_BASE_