From: David Elliott Date: Mon, 14 Jul 2003 16:06:52 +0000 (+0000) Subject: Added wxUSE_COMBOBOX guard X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2ee09b55620471d3e7cb10bda80cd07b6ae8172f Added wxUSE_COMBOBOX guard git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21969 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/cocoa/combobox.mm b/src/cocoa/combobox.mm index 19575440fe..4101d8f3d5 100644 --- a/src/cocoa/combobox.mm +++ b/src/cocoa/combobox.mm @@ -9,6 +9,10 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// +#include "wx/wxprec.h" + +#if wxUSE_COMBOBOX + #include "wx/app.h" #include "wx/combobox.h" #include "wx/log.h" @@ -123,3 +127,4 @@ wxClientData* wxComboBox::DoGetItemClientObject(int) const return NULL; } +#endif //wxUSE_COMBOBOX