From 46f9bb9475c95ef7ce6420462253e9382006714c Mon Sep 17 00:00:00 2001 From: Ove Kaaven Date: Mon, 3 Jan 2000 19:15:43 +0000 Subject: [PATCH] Unicode compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5216 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/intl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/intl.cpp b/src/common/intl.cpp index caab4f25bd..81b1ee4942 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -483,11 +483,11 @@ void wxMsgCatalog::ConvertEncoding() the string would not be included into compiled catalog) */ wxString header(StringAtOfs(m_pTransTable, 0)); wxString charset; - int pos = header.Find("Content-Type: text/plain; charset="); + int pos = header.Find(wxT("Content-Type: text/plain; charset=")); if (pos == wxNOT_FOUND) return; // incorrectly filled Content-Type header size_t n = pos + 34; /*strlen("Content-Type: text/plain; charset=")*/ - while (header[n] != '\n') + while (header[n] != wxT('\n')) charset << header[n++]; enc = wxTheFontMapper->CharsetToEncoding(charset, FALSE); -- 2.45.2