Don't use native MSW wxCommandLinkButton in wxUniversal.

Test for __WXUNIVERSAL__ when selecting the version of this class to use.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65350 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-08-18 22:48:48 +00:00
parent a1bdd4ab9b
commit 8220f2f145

View File

@@ -132,7 +132,7 @@ private:
wxDECLARE_NO_COPY_CLASS(wxGenericCommandLinkButton); wxDECLARE_NO_COPY_CLASS(wxGenericCommandLinkButton);
}; };
#if defined(__WXMSW__) #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
#include "wx/msw/commandlinkbutton.h" #include "wx/msw/commandlinkbutton.h"
#else #else
class WXDLLIMPEXP_ADV wxCommandLinkButton : public wxGenericCommandLinkButton class WXDLLIMPEXP_ADV wxCommandLinkButton : public wxGenericCommandLinkButton