From: Vadim Zeitlin Date: Sun, 3 Aug 2003 20:03:59 +0000 (+0000) Subject: missing or wrong DLLEXPORTs for DLL build X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4b9d8a9c22fbb04b2b3114592808a00b4f013afe missing or wrong DLLEXPORTs for DLL build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22526 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/textbuf.h b/include/wx/textbuf.h index 2b25b2d470..753c11d104 100644 --- a/include/wx/textbuf.h +++ b/include/wx/textbuf.h @@ -43,7 +43,9 @@ enum wxTextFileType // wxTextBuffer // ---------------------------------------------------------------------------- -WX_DEFINE_EXPORTED_ARRAY_INT(wxTextFileType, ArrayFileType); +WX_DEFINE_USER_EXPORTED_ARRAY_INT(wxTextFileType, + wxArrayLinesType, + class WXDLLIMPEXP_BASE); #endif // wxUSE_TEXTBUFFER @@ -188,8 +190,8 @@ protected: wxString m_strBufferName; // name of the buffer private: - ArrayFileType m_aTypes; // type of each line - wxArrayString m_aLines; // lines of file + wxArrayLinesType m_aTypes; // type of each line + wxArrayString m_aLines; // lines of file size_t m_nCurLine; // number of current line in the buffer diff --git a/src/common/fileconf.cpp b/src/common/fileconf.cpp index 6babd6ea78..aa4b1ee9b5 100644 --- a/src/common/fileconf.cpp +++ b/src/common/fileconf.cpp @@ -106,8 +106,10 @@ static wxString GetAppName(const wxString& appname); // "template" array types // ---------------------------------------------------------------------------- -WX_DEFINE_SORTED_EXPORTED_ARRAY(wxFileConfigEntry *, ArrayEntries); -WX_DEFINE_SORTED_EXPORTED_ARRAY(wxFileConfigGroup *, ArrayGroups); +WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(wxFileConfigEntry *, ArrayEntries, + WXDLLIMPEXP_BASE); +WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(wxFileConfigGroup *, ArrayGroups, + WXDLLIMPEXP_BASE); // ---------------------------------------------------------------------------- // wxFileConfigLineList