]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textbuf.h
Missing header
[wxWidgets.git] / include / wx / textbuf.h
index f768a5632471fbc2f11fd508fbc9fa5b6b49f0c5..a5d39703ca185561568ae4d2b172c93c6c7a20ad 100644 (file)
@@ -132,7 +132,7 @@ public:
     wxTextFileType GuessType() const;
 
     // get the name of the buffer
-    const wxChar *GetName() const { return m_strBufferName.c_str(); }
+    const wxString& GetName() const { return m_strBufferName; }
 
     // add/remove lines
     // ----------------
@@ -172,7 +172,7 @@ protected:
     // -----
 
     // default ctor, use Open(string)
-    wxTextBuffer() { m_isOpened = false; }
+    wxTextBuffer() { m_nCurLine = 0; m_isOpened = false; }
 
     // ctor from filename
     wxTextBuffer(const wxString& strBufferName);