]> git.saurik.com Git - wxWidgets.git/commitdiff
Map illegal UTF-8 sequences to a range in Unicode's private use area as
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Sat, 28 Apr 2007 15:56:17 +0000 (15:56 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Sat, 28 Apr 2007 15:56:17 +0000 (15:56 +0000)
discussed recently on wx-users.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45707 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/strconv.cpp

index 9d093143fe7f60cade95290da2010884826be7fc..4aaf0ab3b755d7d68a4b613941a2f09d47ef95f6 100644 (file)
@@ -480,7 +480,7 @@ wxConvBrokenFileNames::wxConvBrokenFileNames(const wxChar *charset)
 {
     if ( !charset || wxStricmp(charset, _T("UTF-8")) == 0
                   || wxStricmp(charset, _T("UTF8")) == 0  )
-        m_conv = new wxMBConvUTF8(wxMBConvUTF8::MAP_INVALID_UTF8_TO_OCTAL);
+        m_conv = new wxMBConvUTF8(wxMBConvUTF8::MAP_INVALID_UTF8_TO_PUA);
     else
         m_conv = new wxCSConv(charset);
 }