summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Mutz <[email protected]>2024-05-28 08:33:22 +0200
committerMarc Mutz <[email protected]>2024-06-10 22:39:43 +0200
commit09fce4a587047ff03c7ca37dbb2bb8f71a18a75e (patch)
tree764c002600350dc9ad115a318749445e8097d7f5
parent806e02060a8a84509506884d2620010f3b43cdd0 (diff)
qhttpmultipart_p.h: add missing qiodevice.h include
QIODevice is a base class of one of the classes defined in this header. QtCreator's clangd goes on a rampage in this header as a consequence. Amends the start of the public history. Pick-to: 6.8 6.7 6.5 6.2 5.15 Change-Id: I06c6a26dde7e7ae72b722136fcd666684733d40f Reviewed-by: MÃ¥rten Nordheim <[email protected]>
-rw-r--r--src/network/access/qhttpmultipart_p.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/network/access/qhttpmultipart_p.h b/src/network/access/qhttpmultipart_p.h
index 7a12ce84248..c8cc3f4f5aa 100644
--- a/src/network/access/qhttpmultipart_p.h
+++ b/src/network/access/qhttpmultipart_p.h
@@ -19,7 +19,9 @@
#include "QtCore/qshareddata.h"
#include "qnetworkrequest_p.h" // for deriving QHttpPartPrivate from QNetworkHeadersPrivate
#include "qhttpheadershelper_p.h"
+
#include "private/qobject_p.h"
+#include <QtCore/qiodevice.h>
#ifndef Q_OS_WASM
QT_REQUIRE_CONFIG(http);