X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/df5168c427b51f1ab2b3200a5c8f7626b3d24aae..f94380234878ab30799ccce3d1cf8cced364df37:/include/wx/textbuf.h diff --git a/include/wx/textbuf.h b/include/wx/textbuf.h index 2b25b2d470..170c28b931 100644 --- a/include/wx/textbuf.h +++ b/include/wx/textbuf.h @@ -12,7 +12,7 @@ #ifndef _WX_TEXTBUFFER_H #define _WX_TEXTBUFFER_H -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "textbuf.h" #endif @@ -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