]> git.saurik.com Git - wxWidgets.git/commitdiff
init m_isOpened in ctor (bug 736208)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 May 2003 22:28:16 +0000 (22:28 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 May 2003 22:28:16 +0000 (22:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/textbuf.h

index 79e27e179933e559c532c58c8755b20b7fb1c362..71a72d4c70e053e7a65db0304bd7bfeefda0b694 100644 (file)
@@ -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);