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:
Vadim Zeitlin
2007-08-30 20:21:16 +00:00
parent fe1b98f5d5
commit 6cf1cf9e6d

View File

@@ -141,19 +141,6 @@ public:
wxString sTmp = GetLine(i).AfterFirst(wxT('='));
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));
}
};
// ----------------------------------------------------------------------------