fix: change html unescape to Html::unescape

This commit is contained in:
xiaoyifang 2022-04-16 19:34:12 +08:00
parent bd58c6c37d
commit fcf0fec3ff

View file

@ -41,6 +41,7 @@
#include "gddebug.hh"
#include "ripemd.hh"
#include "utils.hh"
#include "htmlescape.hh"
namespace Mdict
{
@ -373,7 +374,7 @@ bool MdictParser::readHeader( QDataStream & in )
{
#if( QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 ) )
styleSheets_[ lines[ i ].toInt() ] =
pair< QString, QString >( Utils::unescapeHtml( lines[ i + 1 ] ), Utils::unescapeHtml( lines[ i + 2 ] ) );
pair< QString, QString >( Html::unescape( lines[ i + 1 ] ), Html::unescape( lines[ i + 2 ] ) );
#else
styleSheets_[ lines[ i ].toInt() ] = pair< QString, QString >( lines[ i + 1 ], lines[ i + 2 ] );
#endif