]> git.saurik.com Git - wxWidgets.git/commitdiff
Unicode compilation fix (patch 747959)
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 3 Jun 2003 10:55:47 +0000 (10:55 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 3 Jun 2003 10:55:47 +0000 (10:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/makegen/makegen.cpp

index 7db8b972a7fae3e28ebcb0d0f999433d3ce72c06..424d3257c79cb9b528b906044ebd9c825b6eed51 100644 (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());