From: Vadim Zeitlin Date: Mon, 4 Aug 2003 01:17:33 +0000 (+0000) Subject: compilation fix after warning fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e33f6503823301550aade5ecc135d03304f0160a compilation fix after warning fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/fileconf.cpp b/src/common/fileconf.cpp index d93a06078d..876047dfc6 100644 --- a/src/common/fileconf.cpp +++ b/src/common/fileconf.cpp @@ -108,9 +108,9 @@ static wxString GetAppName(const wxString& appname); #ifdef WXMAKINGDLL_BASE WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(wxFileConfigEntry *, ArrayEntries, - WXDLLIMPEXP_LOCAL); + WXDLLIMPEXP_BASE); WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(wxFileConfigGroup *, ArrayGroups, - WXDLLIMPEXP_LOCAL); + WXDLLIMPEXP_BASE); #else WX_DEFINE_SORTED_ARRAY(wxFileConfigEntry *, ArrayEntries); WX_DEFINE_SORTED_ARRAY(wxFileConfigGroup *, ArrayGroups);