From b91b39a7e4f0156706fde4a77379719df86e6bfa Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Sat, 16 Aug 2014 11:19:06 -0700 Subject: Remove the extra semi-colons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit qwebchannel.h:60:101: error: extra ‘;’ [-Wpedantic] Change-Id: I7623b68ace59431266ca6a48bfa23bc306363e7e Reviewed-by: Milian Wolff --- src/webchannel/qwebchannel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/webchannel/qwebchannel.h') diff --git a/src/webchannel/qwebchannel.h b/src/webchannel/qwebchannel.h index 7701751..30e1b69 100644 --- a/src/webchannel/qwebchannel.h +++ b/src/webchannel/qwebchannel.h @@ -57,7 +57,7 @@ class Q_WEBCHANNEL_EXPORT QWebChannel : public QObject { Q_OBJECT Q_DISABLE_COPY(QWebChannel) - Q_PROPERTY(bool blockUpdates READ blockUpdates WRITE setBlockUpdates NOTIFY blockUpdatesChanged); + Q_PROPERTY(bool blockUpdates READ blockUpdates WRITE setBlockUpdates NOTIFY blockUpdatesChanged) public: explicit QWebChannel(QObject *parent = 0); ~QWebChannel(); @@ -81,7 +81,7 @@ public Q_SLOTS: private: Q_DECLARE_PRIVATE(QWebChannel) QWebChannel(QWebChannelPrivate &dd, QObject *parent = 0); - Q_PRIVATE_SLOT(d_func(), void _q_transportDestroyed(QObject*)); + Q_PRIVATE_SLOT(d_func(), void _q_transportDestroyed(QObject*)) friend class QMetaObjectPublisher; friend class QQmlWebChannel; -- cgit v1.2.1