diff --git a/src/lib/other/aboutdialog.cpp b/src/lib/other/aboutdialog.cpp
index 94cfcd2a1..6a4007ad2 100644
--- a/src/lib/other/aboutdialog.cpp
+++ b/src/lib/other/aboutdialog.cpp
@@ -25,6 +25,7 @@
#include
#include
+#include
AboutDialog::AboutDialog(QWidget* parent)
: QDialog(parent)
@@ -54,7 +55,7 @@ void AboutDialog::showAbout()
Qz::VERSION
#endif
);
- aboutHtml += tr("QtWebEngine version %1
").arg(qVersion());
+ aboutHtml += tr("QtWebEngine version %1").arg(QStringLiteral(QTWEBENGINECORE_VERSION_STR));
aboutHtml += QString("© %1 %2
").arg(Qz::COPYRIGHT, Qz::AUTHOR);
aboutHtml += QString("%1
").arg(Qz::WWWADDRESS);
aboutHtml += "" + mApp->userAgentManager()->defaultUserAgent() + "
";