Unicode compilation fixes after wxFFile change

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19068 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-02-02 14:17:41 +00:00
parent c48e9cbb17
commit f68c6b523c
2 changed files with 3 additions and 3 deletions

View File

@@ -173,7 +173,7 @@ bool wxTextCtrlBase::SaveFile(const wxString& filename)
}
#if wxUSE_FFILE
wxFFile file(filename, "w");
wxFFile file(filename, _T("w"));
if ( file.IsOpened() && file.Write(GetValue()) )
{
// it's not modified any longer