undo revision 48162 as it broke unit tests
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48698 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
2452025c59
commit
e20d1329b5
@ -77,9 +77,6 @@ wxChar wxTextInputStream::NextChar()
|
|||||||
memset((void*)m_lastBytes, 0, 10);
|
memset((void*)m_lastBytes, 0, 10);
|
||||||
for(size_t inlen = 0; inlen < 9; inlen++)
|
for(size_t inlen = 0; inlen < 9; inlen++)
|
||||||
{
|
{
|
||||||
if (!m_input.CanRead())
|
|
||||||
return wxEOT;
|
|
||||||
|
|
||||||
// actually read the next character
|
// actually read the next character
|
||||||
m_lastBytes[inlen] = m_input.GetC();
|
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...
|
// there should be no encoding which requires more than nine bytes for one character...
|
||||||
return wxEOT;
|
return wxEOT;
|
||||||
#else
|
#else
|
||||||
if (!m_input.CanRead())
|
|
||||||
return wxEOT;
|
|
||||||
|
|
||||||
m_lastBytes[0] = m_input.GetC();
|
m_lastBytes[0] = m_input.GetC();
|
||||||
|
|
||||||
if(m_input.LastRead() <= 0)
|
if(m_input.LastRead() <= 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user