git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35318
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
msgTitle = wxString(_("File error"));
#if wxUSE_STD_IOSTREAM
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);
if (store.fail() || store.bad())
#else
wxFileOutputStream store(file);
bool wxDocument::DoOpenDocument(const wxString& file)
{
#if wxUSE_STD_IOSTREAM
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);
if (!store.fail() && !store.bad())
#else
wxFileInputStream store(file);