summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorPeter Varga <pvarga@inf.u-szeged.hu>2023-02-23 11:37:56 +0100
committerPeter Varga <pvarga@inf.u-szeged.hu>2023-03-16 14:42:11 +0100
commit398716006176906c2128e47d6fca9dda029692c2 (patch)
tree9e1ce48697e49060de9f0896e132b4b7373985b3 /src/core
parent8fd4e9fc616c71d84ab578808e89bbb5dd28c836 (diff)
downloadqtwebengine-398716006176906c2128e47d6fca9dda029692c2.tar.gz
Fix syncqt include warning
WARNING: qwebengineloadinginfo.h includes QHash when it should include QtCore/QHash Change-Id: I244a9390421ade2344660b66a54d4bf99915f29a Reviewed-by: Yigit Akcay <yigit.akcay@qt.io> Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/core')
-rw-r--r--src/core/api/qwebengineloadinginfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/api/qwebengineloadinginfo.h b/src/core/api/qwebengineloadinginfo.h
index 11cce7365..86d9dba46 100644
--- a/src/core/api/qwebengineloadinginfo.h
+++ b/src/core/api/qwebengineloadinginfo.h
@@ -6,10 +6,10 @@
#include <QtWebEngineCore/qtwebenginecoreglobal.h>
-#include <QtCore/qshareddata.h>
+#include <QtCore/qhash.h>
#include <QtCore/qobject.h>
+#include <QtCore/qshareddata.h>
#include <QtCore/qurl.h>
-#include <QHash>
namespace QtWebEngineCore {
class WebContentsAdapter;