Remove WXDLLIMPEXP_BASE from the declaration of wxList_SortFunction

to resolve link errors with MSVC 7.1

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51119 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2008-01-08 22:41:28 +00:00
parent a60b0ddc20
commit c6ed07281f

View File

@ -80,7 +80,7 @@ typedef int (* LINKAGEMODE wxListIterateFunction)(void *current);
#if !defined(__VISUALC__) || __VISUALC__ >= 1300 // == !VC6
template<class T>
class WXDLLIMPEXP_BASE wxList_SortFunction
class wxList_SortFunction
{
public:
wxList_SortFunction(wxSortCompareFunction f) : m_f(f) { }