]> git.saurik.com Git - wxWidgets.git/commitdiff
Unicode compilation fix
authorOve Kaaven <ovek@arcticnet.no>
Mon, 3 Jan 2000 19:15:43 +0000 (19:15 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Mon, 3 Jan 2000 19:15:43 +0000 (19:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5216 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/intl.cpp

index caab4f25bdf1d764668dfd4e0e5c995ba55aa5f4..81b1ee49428e06b42d250f36f6ee3b6f02a97bc4 100644 (file)
@@ -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);