Unicode compilation fix (patch 747959)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-06-03 10:55:47 +00:00
parent f124ddf450
commit e7546115db

View File

@@ -83,7 +83,7 @@ bool MakeGenApp::GenerateMakefile(const wxString& filename)
wxString fileOutName;
fileOutName << m_outdir << _T('/') << filename;
wxFFile fileOut(fileOutName, "w");
wxFFile fileOut(fileOutName, _T("w"));
if ( !fileOut.IsOpened() )
{
wxLogError(_T("Makefile '%s' couldn't be generated."), filename.c_str());