X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/198d7c6cb9f892732037c017b448d3dd9e258a55..9859d369b49e35a1cad0f760173e165f974fb6cb:/src/html/m_layout.cpp diff --git a/src/html/m_layout.cpp b/src/html/m_layout.cpp index f8f5c34931..58384fb599 100644 --- a/src/html/m_layout.cpp +++ b/src/html/m_layout.cpp @@ -293,9 +293,14 @@ TAG_HANDLER_BEGIN(TITLE, "TITLE") tag.GetBeginPos(), tag.GetEndPos1()-tag.GetBeginPos()); #if !wxUSE_UNICODE && wxUSE_WCHAR_T - wxCSConv conv(m_WParser->GetInputEncoding()); - title = wxString(title.wc_str(conv), wxConvLocal); -#endif + const wxFontEncoding enc = m_WParser->GetInputEncoding(); + if ( enc != wxFONTENCODING_DEFAULT ) + { + // need to convert to the current one + title = wxString(title.wc_str(wxCSConv(enc)), wxConvLocal); + } +#endif // !wxUSE_UNICODE + title = m_WParser->GetEntitiesParser()->Parse(title); winIface->SetHTMLWindowTitle(title); @@ -341,12 +346,12 @@ TAG_HANDLER_BEGIN(BODY, "BODY") wxInputStream *is = fileBgImage->GetStream(); if ( is ) { -#if !defined(__WXMSW__) || wxUSE_WXDIB wxImage image(*is); if ( image.Ok() ) winIface->SetHTMLBackgroundImage(image); -#endif } + + delete fileBgImage; } }