From: David Elliott Date: Mon, 24 Mar 2003 16:50:23 +0000 (+0000) Subject: !defined(wxUSE_TOOLBAR_NATIVE) changed to !wxUSE_TOOLBAR_NATIVE because the X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/08af0d25f9d74cfd380975acfd3d61573d92c4c9 !defined(wxUSE_TOOLBAR_NATIVE) changed to !wxUSE_TOOLBAR_NATIVE because the configure script does define it to 0, not undef it (wxCocoa is using this) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/tbarsmpl.cpp b/src/generic/tbarsmpl.cpp index 11a40f1b72..33d24e4178 100644 --- a/src/generic/tbarsmpl.cpp +++ b/src/generic/tbarsmpl.cpp @@ -86,7 +86,7 @@ public: IMPLEMENT_DYNAMIC_CLASS(wxToolBarSimple, wxToolBarBase) -#if !defined(wxUSE_TOOLBAR_NATIVE) && !defined(__WXUNIVERSAL__) +#if !wxUSE_TOOLBAR_NATIVE && !defined(__WXUNIVERSAL__) #include "wx/toolbar.h" IMPLEMENT_DYNAMIC_CLASS(wxToolBar, wxToolBarSimple)