missing or wrong DLLEXPORTs for DLL build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22526 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-08-03 20:03:59 +00:00
parent 3d1f191965
commit 4b9d8a9c22
2 changed files with 9 additions and 5 deletions

View File

@@ -43,7 +43,9 @@ enum wxTextFileType
// wxTextBuffer // wxTextBuffer
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
WX_DEFINE_EXPORTED_ARRAY_INT(wxTextFileType, ArrayFileType); WX_DEFINE_USER_EXPORTED_ARRAY_INT(wxTextFileType,
wxArrayLinesType,
class WXDLLIMPEXP_BASE);
#endif // wxUSE_TEXTBUFFER #endif // wxUSE_TEXTBUFFER
@@ -188,8 +190,8 @@ protected:
wxString m_strBufferName; // name of the buffer wxString m_strBufferName; // name of the buffer
private: private:
ArrayFileType m_aTypes; // type of each line wxArrayLinesType m_aTypes; // type of each line
wxArrayString m_aLines; // lines of file wxArrayString m_aLines; // lines of file
size_t m_nCurLine; // number of current line in the buffer size_t m_nCurLine; // number of current line in the buffer

View File

@@ -106,8 +106,10 @@ static wxString GetAppName(const wxString& appname);
// "template" array types // "template" array types
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
WX_DEFINE_SORTED_EXPORTED_ARRAY(wxFileConfigEntry *, ArrayEntries); WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(wxFileConfigEntry *, ArrayEntries,
WX_DEFINE_SORTED_EXPORTED_ARRAY(wxFileConfigGroup *, ArrayGroups); WXDLLIMPEXP_BASE);
WX_DEFINE_SORTED_USER_EXPORTED_ARRAY(wxFileConfigGroup *, ArrayGroups,
WXDLLIMPEXP_BASE);
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxFileConfigLineList // wxFileConfigLineList