// --------
wxTextCtrlBase();
+ ~wxTextCtrlBase();
// accessors
// ---------
bool Modified() const { return IsModified(); }
#endif
-private:
+protected:
// the name of the last file loaded with LoadFile() which will be used by
// SaveFile() by default
wxString m_filename;
+
+private:
+#ifndef NO_TEXT_WINDOW_STREAM
+#if !wxUSE_IOSTREAMH
+ char *m_streambuf;
+#endif
+#endif
};
// ----------------------------------------------------------------------------