From: Vadim Zeitlin Date: Wed, 16 Feb 2011 23:45:04 +0000 (+0000) Subject: Remove WXDLLIMPEXP_CORE from VC6 wxCompositeWindow declaration. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/00a73a8de6f98749e2ec7bf060c5c0aa55261821?ds=inline Remove WXDLLIMPEXP_CORE from VC6 wxCompositeWindow declaration. Hopefully not using WXDLLIMPEXP_CORE here should fix VC6 warnings about using non dll-interface class as a base class for a dll-interface one. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66931 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/compositewin.h b/include/wx/compositewin.h index 785b69f87e..9e7b5fd6a1 100644 --- a/include/wx/compositewin.h +++ b/include/wx/compositewin.h @@ -120,7 +120,7 @@ private: #else // __VISUALC6__ template -class WXDLLIMPEXP_CORE wxCompositeWindow : public W +class wxCompositeWindow : public W { };