From: Václav Slavík Date: Mon, 17 Dec 2001 00:30:55 +0000 (+0000) Subject: fixed Unicode compilation (please use wxT()...) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7613582bcc61ea43892fb36bea8b2c2e9ee9b7ac fixed Unicode compilation (please use wxT()...) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13048 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 17525840a4..2bb2b0be19 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -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") ); } } }