]> 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 223403b1c85d8c9df8ac3610fc215df1c1040fcf..02434c33775ddc9569a2c45d941d055cd45df055 100644 (file)
@@ -64,6 +64,7 @@ public:
     // --------
 
     wxTextCtrlBase();
+    ~wxTextCtrlBase();
 
     // accessors
     // ---------
@@ -159,6 +160,13 @@ 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
 };
 
 // ----------------------------------------------------------------------------