From 6cf1cf9e6d3ce165129e9d941284fe97d44fffca Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 30 Aug 2007 20:21:16 +0000 Subject: [PATCH] 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 --- src/unix/mimetype.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/unix/mimetype.cpp b/src/unix/mimetype.cpp index 00d3b57847..1a249e0611 100644 --- a/src/unix/mimetype.cpp +++ b/src/unix/mimetype.cpp @@ -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)); - } }; // ---------------------------------------------------------------------------- -- 2.45.2