summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Rossi <pierre.rossi@theqtcompany.com>2015-08-19 16:39:50 +0200
committerMilian Wolff <milian.wolff@kdab.com>2015-08-19 15:25:21 +0000
commit3260efe1b6a28ef81226756d2f24a2c73b2c1450 (patch)
treeeb5107f727c85579b2df4f5364eac7b3da77319a
parenta8b2cb5cdcded05f24c90d3148b773eec1853a14 (diff)
downloadqtwebchannel-3260efe1b6a28ef81226756d2f24a2c73b2c1450.tar.gz
Fix #include's in public headers
Uniformly use the <Module/class.h> style, like https://wiki.qt.io/Coding_Conventions mandates. Change-Id: Ia2de5fb5ba4e3229c614c204d43349bd7fcbeaab Reviewed-by: Milian Wolff <milian.wolff@kdab.com>
-rw-r--r--src/webchannel/qwebchannel.h4
-rw-r--r--src/webchannel/qwebchannelabstracttransport.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/webchannel/qwebchannel.h b/src/webchannel/qwebchannel.h
index 0e642db..d32d017 100644
--- a/src/webchannel/qwebchannel.h
+++ b/src/webchannel/qwebchannel.h
@@ -35,8 +35,8 @@
#ifndef QWEBCHANNEL_H
#define QWEBCHANNEL_H
-#include <QObject>
-#include <QJsonValue>
+#include <QtCore/QObject>
+#include <QtCore/QJsonValue>
#include <QtWebChannel/qwebchannelglobal.h>
diff --git a/src/webchannel/qwebchannelabstracttransport.h b/src/webchannel/qwebchannelabstracttransport.h
index 851c622..e7f2af4 100644
--- a/src/webchannel/qwebchannelabstracttransport.h
+++ b/src/webchannel/qwebchannelabstracttransport.h
@@ -34,7 +34,7 @@
#ifndef QWEBCHANNELABSTRACTTRANSPORT_H
#define QWEBCHANNELABSTRACTTRANSPORT_H
-#include <QObject>
+#include <QtCore/QObject>
#include <QtWebChannel/qwebchannelglobal.h>
QT_BEGIN_NAMESPACE