]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/txtstrm.cpp
Implemented HasContainerColumns() for GTK+
[wxWidgets.git] / src / common / txtstrm.cpp
index 010fe739f644263c97a91860e9882bd59c6e2c86..43deb545d3d419d5daf69951d3c58b8b145e9194 100644 (file)
@@ -77,9 +77,6 @@ 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();
 
@@ -93,9 +90,6 @@ 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)