git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34844
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
m_file = new wxFile(fileName, wxFile::read);
m_file_destroy = true;
+ if ( !m_file->IsOpened() )
+ m_lasterror = wxSTREAM_READ_ERROR;
}
wxFileInputStream::wxFileInputStream()
m_file_destroy = true;
if (!m_file->IsOpened())
- {
m_lasterror = wxSTREAM_WRITE_ERROR;
- }
- else
- {
- if (m_file->Error())
- m_lasterror = wxSTREAM_WRITE_ERROR;
- }
}
wxFileOutputStream::wxFileOutputStream(wxFile& file)