From: Mattia Barbon <mbarbon@cpan.org>
Date: Sat, 5 Mar 2005 16:06:02 +0000 (+0000)
Subject:   Use the correct WXDLLIMPEXT declaration for
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f455ffb2dab3b43d0d525baa6d472af3dd613ee3

  Use the correct WXDLLIMPEXT declaration for
wxStringListBase.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32616 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/include/wx/list.h b/include/wx/list.h
index 62d6c44aa0..5c3c22b942 100644
--- a/include/wx/list.h
+++ b/include/wx/list.h
@@ -1170,9 +1170,9 @@ private:
 
 #else // if wxUSE_STL
 
-WX_DECLARE_LIST_XO(wxString, wxStringListBase, class WXDLLEXPORT);
+WX_DECLARE_LIST_XO(wxString, wxStringListBase, class WXDLLIMPEXP_BASE);
 
-class WXDLLEXPORT wxStringList : public wxStringListBase
+class WXDLLIMPEXP_BASE wxStringList : public wxStringListBase
 {
 public:
     compatibility_iterator Append(wxChar* s)