From c6ed07281f0a3193d3c4fa848d511c28dff2ebae Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 8 Jan 2008 22:41:28 +0000 Subject: [PATCH] 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 --- include/wx/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/list.h b/include/wx/list.h index df7eed1cb7..c83ac08be3 100644 --- a/include/wx/list.h +++ b/include/wx/list.h @@ -80,7 +80,7 @@ typedef int (* LINKAGEMODE wxListIterateFunction)(void *current); #if !defined(__VISUALC__) || __VISUALC__ >= 1300 // == !VC6 template -class WXDLLIMPEXP_BASE wxList_SortFunction +class wxList_SortFunction { public: wxList_SortFunction(wxSortCompareFunction f) : m_f(f) { }