From 8e8d1fee571545c19d62fea92820caa3f29e2cb6 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Mon, 12 Jun 2000 16:49:55 +0000 Subject: [PATCH] Corrected wxFFileInputStream as well. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/wfstream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/wfstream.cpp b/src/common/wfstream.cpp index 42b4301841..b28617d537 100644 --- a/src/common/wfstream.cpp +++ b/src/common/wfstream.cpp @@ -181,7 +181,7 @@ wxFileStream::wxFileStream(const wxString& fileName) wxFFileInputStream::wxFFileInputStream(const wxString& fileName) : wxInputStream() { - m_file = new wxFFile(fileName, "r"); + m_file = new wxFFile(fileName, "rb"); m_file_destroy = TRUE; }