1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

Fixed crash in qz_escape()

Closes #691
This commit is contained in:
nowrep 2012-12-27 11:31:10 +01:00
parent 2ea02c6d5e
commit 8cca4437f1

View File

@ -378,7 +378,7 @@ QString QT_QUPZILLA_EXPORT qz_escape(const QString &string)
#if QT_VERSION >= 0x050000
return string.toHtmlEscaped();
#else
return qz_escape(string);
return Qt::escape(string);
#endif
}