From 53e2e87c9be7d8b149849d48243b56e01b0e7400 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 26 Aug 2005 22:52:29 +0000 Subject: [PATCH] open fstream with ios::binary flag to be compatible with wxFileStream and to avoid mangling binary files git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35318 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/docview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/docview.cpp b/src/common/docview.cpp index 4ca21c4..bd6fa67 100644 --- a/src/common/docview.cpp +++ b/src/common/docview.cpp @@ -571,7 +571,7 @@ bool wxDocument::DoSaveDocument(const wxString& file) msgTitle = wxString(_("File error")); #if wxUSE_STD_IOSTREAM - wxSTD ofstream store(file.mb_str()); + wxSTD ofstream store(file.mb_str(), wxSTD ios::binary); if (store.fail() || store.bad()) #else wxFileOutputStream store(file); @@ -597,7 +597,7 @@ bool wxDocument::DoSaveDocument(const wxString& file) bool wxDocument::DoOpenDocument(const wxString& file) { #if wxUSE_STD_IOSTREAM - wxSTD ifstream store(file.mb_str()); + wxSTD ifstream store(file.mb_str(), wxSTD ios::binary); if (!store.fail() && !store.bad()) #else wxFileInputStream store(file); -- 2.7.4