summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMilian Wolff <milian.wolff@kdab.com>2014-01-15 16:43:22 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-31 14:21:12 +0100
commitd48ca4efa70624c3178c0b97441ff7499aa2be36 (patch)
tree0d30d7f754dd15b4f3a968d29d5ae45bd120fd3a /src
parenta3463f8c873f19f9b2aff66d9a633739bb633128 (diff)
downloadqtwebchannel-d48ca4efa70624c3178c0b97441ff7499aa2be36.tar.gz
Fix clang warning about struct which was forward-declared as class.
Change-Id: I7dc78213bc57cbfd63b021e00823c4aad105aa05 Reviewed-by: Simon Hausmann <simon.hausmann@digia.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 a1f4b6b..bf9c5fd 100644
--- a/src/webchannel/qwebchannel.h
+++ b/src/webchannel/qwebchannel.h
@@ -50,7 +50,7 @@
QT_BEGIN_NAMESPACE
-class QWebChannelPrivate;
+struct QWebChannelPrivate;
class Q_WEBCHANNEL_EXPORT QWebChannel : public QObject
{