From 48a2e193ec60bca94903706a7fd7528e9311037e Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 4 Jun 2007 12:51:25 +0000 Subject: [PATCH] compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/strconv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index 408b9f2906..96f4b27ce7 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -1982,8 +1982,8 @@ size_t wxMBConv_iconv::GetMBNulLen() const #if wxUSE_UNICODE_UTF8 bool wxMBConv_iconv::IsUTF8() const { - return wxStricmp(m_name, "UTF-8") == 0 || - wxStricmp(m_name, "UTF8") == 0; + return wxStricmp(m_name, _T("UTF-8")) == 0 || + wxStricmp(m_name, _T("UTF8")) == 0; } #endif -- 2.45.2