]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/txtstrm.cpp
Make wxDataViewItemArray more efficient
[wxWidgets.git] / src / common / txtstrm.cpp
index c933c4b4da71cb1b1f0268abb83d41abe9997693..010fe739f644263c97a91860e9882bd59c6e2c86 100644 (file)
@@ -77,6 +77,9 @@ wxChar wxTextInputStream::NextChar()
     memset((void*)m_lastBytes, 0, 10);
     for(size_t inlen = 0; inlen < 9; inlen++)
     {
+        if (!m_input.CanRead())
+            return wxEOT;
+
         // actually read the next character
         m_lastBytes[inlen] = m_input.GetC();
 
@@ -90,6 +93,9 @@ wxChar wxTextInputStream::NextChar()
     // there should be no encoding which requires more than nine bytes for one character...
     return wxEOT;
 #else
+    if (!m_input.CanRead())
+        return wxEOT;
+
     m_lastBytes[0] = m_input.GetC();
 
     if(m_input.LastRead() <= 0)
@@ -438,12 +444,6 @@ wxTextOutputStream& wxTextOutputStream::PutChar(wxChar c)
     return *this;
 }
 
-wxTextOutputStream& wxTextOutputStream::operator<<(const wxChar *string)
-{
-    WriteString( wxString(string) );
-    return *this;
-}
-
 wxTextOutputStream& wxTextOutputStream::operator<<(const wxString& string)
 {
     WriteString( string );