summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMilian Wolff <milian.wolff@kdab.com>2014-07-17 13:06:02 +0200
committerMilian Wolff <milian.wolff@kdab.com>2014-07-28 17:15:31 +0200
commit37fcae09b8452f0daa252e1eb0839b1e56d8fa7c (patch)
tree939df3b1ee6c1ec1ddd776471a1c03086a6abd1d /src
parent080193a72acda0d875a805f51db98d00ae4f7de3 (diff)
downloadqtwebchannel-37fcae09b8452f0daa252e1eb0839b1e56d8fa7c.tar.gz
Fix compile warning with clang.
QWebChannelPrivate was declared as struct, even though it is defined as class later on. Clang emits a warning in such cases. Change-Id: Ia5988d229d41f02493035e2502955e92079f2baf Reviewed-by: Milian Wolff <milian.wolff@kdab.com>
Diffstat (limited to 'src')
-rw-r--r--src/webchannel/qwebchannel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webchannel/qwebchannel.h b/src/webchannel/qwebchannel.h
index a4f34b4..a65a4ee 100644
--- a/src/webchannel/qwebchannel.h
+++ b/src/webchannel/qwebchannel.h
@@ -50,7 +50,7 @@
QT_BEGIN_NAMESPACE
-struct QWebChannelPrivate;
+class QWebChannelPrivate;
class QWebChannelAbstractTransport;
class Q_WEBCHANNEL_EXPORT QWebChannel : public QObject