X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bf3e0fbd1ff071caa5d929f01ad6ef9a64ee6494..d7e1a3227440c2910124edfc8896bbe23d6d0ab3:/include/wx/textctrl.h diff --git a/include/wx/textctrl.h b/include/wx/textctrl.h index 5e7d35a11f..02434c3377 100644 --- a/include/wx/textctrl.h +++ b/include/wx/textctrl.h @@ -64,6 +64,7 @@ public: // -------- wxTextCtrlBase(); + ~wxTextCtrlBase(); // accessors // --------- @@ -155,10 +156,17 @@ public: 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 }; // ----------------------------------------------------------------------------