]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/txtstrm.cpp
undid accidental change to this file in r50704
[wxWidgets.git] / src / common / txtstrm.cpp
index 010fe739f644263c97a91860e9882bd59c6e2c86..4792c10cce76b6e9221dafc9fe54ffafe9e0b1ed 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)
@@ -328,8 +322,6 @@ wxTextOutputStream::wxTextOutputStream(wxOutputStream& s, wxEOL mode)
     {
 #if defined(__WXMSW__) || defined(__WXPM__)
         m_mode = wxEOL_DOS;
-#elif defined(__WXMAC__) && !defined(__DARWIN__)
-        m_mode = wxEOL_MAC;
 #else
         m_mode = wxEOL_UNIX;
 #endif
@@ -350,8 +342,6 @@ void wxTextOutputStream::SetMode(wxEOL mode)
     {
 #if defined(__WXMSW__) || defined(__WXPM__)
         m_mode = wxEOL_DOS;
-#elif defined(__WXMAC__) && !defined(__DARWIN__)
-        m_mode = wxEOL_MAC;
 #else
         m_mode = wxEOL_UNIX;
 #endif