Reverted last change that causes further problems

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@48920 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2007-09-24 13:11:36 +00:00
parent 41f4b1fb77
commit 3378c3a594

View File

@@ -73,9 +73,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();
@@ -89,9 +86,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)