]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textbuf.h
wxConvGdk is not used anymore
[wxWidgets.git] / include / wx / textbuf.h
index 79e27e179933e559c532c58c8755b20b7fb1c362..dd6322404f8a082a5ef3ca2925418b1528a71546 100644 (file)
@@ -46,7 +46,7 @@ WX_DEFINE_EXPORTED_ARRAY_INT(wxTextFileType, ArrayFileType);
 
 #endif // wxUSE_TEXTBUFFER
 
-class WXDLLEXPORT wxTextBuffer
+class WXDLLIMPEXP_BASE wxTextBuffer
 {
 public:
     // constants and static functions
@@ -147,7 +147,7 @@ public:
 
     // remove all lines
     void Clear() { m_aLines.Clear(); m_nCurLine = 0; }
-    
+
     // change the buffer (default argument means "don't change type")
     // possibly in another format
     bool Write(wxTextFileType typeNew = wxTextFileType_None,
@@ -161,7 +161,7 @@ protected:
     // -----
 
     // default ctor, use Open(string)
-    wxTextBuffer() { }
+    wxTextBuffer() { m_isOpened = false; }
 
     // ctor from filename
     wxTextBuffer(const wxString& strBufferName);