Added a missing wxStream_NOERROR

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
2000-02-24 19:05:11 +00:00
parent 775c1df40f
commit 802e2f34c1

View File

@@ -73,6 +73,7 @@ size_t wxFileInputStream::OnSysRead(void *buffer, size_t size)
ret = m_file->Read(buffer, size);
m_lasterror = wxStream_NOERROR;
if (m_file->Eof())
m_lasterror = wxStream_EOF;
if (ret == wxInvalidOffset) {