]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed ReadLine missing last character from text files with no final newline.
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Wed, 6 Sep 2006 21:43:19 +0000 (21:43 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Wed, 6 Sep 2006 21:43:19 +0000 (21:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41037 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/txtstrm.cpp

index 1894757f21cecb6385f56712ecc4bd9ddd6d3975..d2e08f5c8ffbe5f53cb707397a82af18739c7059 100644 (file)
@@ -197,9 +197,6 @@ wxString wxTextInputStream::ReadLine()
         if(c == wxEOT)
             break;
 
-        if ( !m_input )
-            break;
-
         if (EatEOL(c))
             break;