]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sstream.h
added wxUSE_REGKEY option
[wxWidgets.git] / include / wx / sstream.h
index f8e75790ab940b88465b754e8851f256f4fe3321..1b2cbd08977d45f60ac3afad6b2511ce756be0be 100644 (file)
@@ -26,7 +26,6 @@ public:
     // ctor associates the stream with the given string which makes a copy of
     // it
     wxStringInputStream(const wxString& s);
-    virtual ~wxStringInputStream();
 
     virtual wxFileOffset GetLength() const;
 
@@ -40,7 +39,7 @@ private:
     wxString m_str;
 
     // the buffer we're reading from
-    char* m_buf;
+    wxCharBuffer m_buf;
 
     // length of the buffer we're reading from
     size_t m_len;