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
This commit is contained in:
Vadim Zeitlin 2011-02-16 23:45:04 +00:00
parent f4d084afda
commit 00a73a8de6

View File

@ -120,7 +120,7 @@ private:
#else // __VISUALC6__
template <class W>
class WXDLLIMPEXP_CORE wxCompositeWindow : public W
class wxCompositeWindow : public W
{
};