From: Václav Slavík Date: Thu, 3 Jul 2003 11:04:03 +0000 (+0000) Subject: this is nasty but required compilation fix, otherwise we get dllimport/dllexport... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ec6ac3eb94ee1b59a945b01bcb18090ec92afca7 this is nasty but required compilation fix, otherwise we get dllimport/dllexport mismatch git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/apptrait.h b/include/wx/apptrait.h index ee9501af6b..8cd8cd4797 100644 --- a/include/wx/apptrait.h +++ b/include/wx/apptrait.h @@ -24,7 +24,11 @@ class WXDLLEXPORT wxMessageOutput; // wxAppTraits: this class defines various configurable aspects of wxApp // ---------------------------------------------------------------------------- +#if wxUSE_BASE class WXDLLIMPEXP_BASE wxAppTraitsBase +#else +class WXDLLIMPEXP_CORE wxAppTraitsBase +#endif { public: // wxAppTraits is an ABC, but we also provide 2 standard implementations of