]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textctrl.h
Fixed some warnings (don't know why dialoged Makefile is being committed)
[wxWidgets.git] / include / wx / textctrl.h
index 5e7d35a11f9a87966e79a8a865c845e9ac7eff88..02434c33775ddc9569a2c45d941d055cd45df055 100644 (file)
@@ -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
 };
 
 // ----------------------------------------------------------------------------