From 490814f21ff7f18a19fd805c7a073dab418406da Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 10 May 2014 16:15:57 +0000 Subject: [PATCH] Do not export template wxMSWOwnerDrawnButton class from the DLL. This doesn't seem to be necessary even for ICC, finally, see #16237. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/ownerdrawnbutton.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/msw/ownerdrawnbutton.h b/include/wx/msw/ownerdrawnbutton.h index 99843e62af..4888d59677 100644 --- a/include/wx/msw/ownerdrawnbutton.h +++ b/include/wx/msw/ownerdrawnbutton.h @@ -91,7 +91,7 @@ private: // This class uses a weak version of CRTP, i.e. it's a template class taking // the base class that the class deriving from it would normally derive from. template -class WXDLLIMPEXP_CORE wxMSWOwnerDrawnButton +class wxMSWOwnerDrawnButton : public T, private wxMSWOwnerDrawnButtonBase {