don't use use UTF-8 to PUA mapping hack, it's not necessary any more now that wxConvAuto can read non-UTF-8 files
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48468 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -141,19 +141,6 @@ public:
|
|||||||
wxString sTmp = GetLine(i).AfterFirst(wxT('='));
|
wxString sTmp = GetLine(i).AfterFirst(wxT('='));
|
||||||
return sTmp;
|
return sTmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
|
||||||
// we override this virtual method because we want to always use UTF-8
|
|
||||||
// conversion allowing for invalid characters as MIME information files
|
|
||||||
// often contain lines in different encodings and can't be read using any
|
|
||||||
// single conversion in Unicode build, so we just try to read what we can
|
|
||||||
// suing the most common encoding (UTF-8 is almost ubiquitous nowadays) and
|
|
||||||
// ignore the rest
|
|
||||||
virtual bool OnRead(const wxMBConv& WXUNUSED(conv))
|
|
||||||
{
|
|
||||||
return wxTextFile::OnRead(
|
|
||||||
wxMBConvUTF8(wxMBConvUTF8::MAP_INVALID_UTF8_TO_PUA));
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
Reference in New Issue
Block a user