X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fcea31d51bf897c782618063279c6876a7807e83..0a7ce61e65c6fffcc8ab1649ab29c08d90e13fdb:/src/common/file.cpp diff --git a/src/common/file.cpp b/src/common/file.cpp index 2405ed9822..45ab8ade8c 100644 --- a/src/common/file.cpp +++ b/src/common/file.cpp @@ -367,7 +367,7 @@ wxFileOffset wxFile::Seek(wxFileOffset ofs, wxSeekMode mode) int origin; switch ( mode ) { default: - wxFAIL_MSG(_("unknown seek origin")); + wxFAIL_MSG(_T("unknown seek origin")); case wxFromStart: origin = SEEK_SET; @@ -459,7 +459,7 @@ bool wxFile::Eof() const else if ( iRc == wxInvalidOffset ) wxLogSysError(_("can't determine if the end of file is reached on descriptor %d"), m_fd); else - wxFAIL_MSG(_("invalid eof() return value.")); + wxFAIL_MSG(_T("invalid eof() return value.")); return true; }