fixed Unicode compilation (please use wxT()...)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13048 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-12-17 00:30:55 +00:00
parent 33984936de
commit 7613582bcc

View File

@@ -271,7 +271,7 @@ void wxFileName::Assign(const wxString& volume,
m_relative = ( (my_path[0u] != wxT('/')) && (my_path[0u] != wxT('\\')) );
break;
default:
wxFAIL_MSG( "error" );
wxFAIL_MSG( wxT("error") );
break;
}
@@ -1070,7 +1070,7 @@ wxString wxFileName::GetPath( bool add_separator, wxPathFormat format ) const
}
default:
{
wxFAIL_MSG( "error" );
wxFAIL_MSG( wxT("error") );
}
}
}
@@ -1172,7 +1172,7 @@ wxString wxFileName::GetFullPath( wxPathFormat format ) const
}
default:
{
wxFAIL_MSG( "error" );
wxFAIL_MSG( wxT("error") );
}
}
}