summaryrefslogtreecommitdiffstats
path: root/src/webengine
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@theqtcompany.com>2015-04-20 16:48:28 +0200
committerAndras Becsi <andras.becsi@theqtcompany.com>2015-04-20 14:56:22 +0000
commit7ff8dc3dbfe4effce66bee8b7b59284f4b2f95be (patch)
tree7ba647c045bfe63e49faccafee391b586539666a /src/webengine
parent1ec438cb947b8079af71d306ab7e329ec9062f8e (diff)
Remove erroneous semicolons after Q_DECLARE_* macros
Some of these declarations had habitual semicolons at the end, which would fail when compiling with -Werror,-Wextra-semi. Change-Id: I8dd73462fc1c10b0bb746fbfc3281d9cce36e5fc Reviewed-by: Michael BrĂ¼ning <michael.bruning@theqtcompany.com>
Diffstat (limited to 'src/webengine')
-rw-r--r--src/webengine/api/qquickwebenginehistory_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webengine/api/qquickwebenginehistory_p.h b/src/webengine/api/qquickwebenginehistory_p.h
index cb6aff2bc..9b3eeb617 100644
--- a/src/webengine/api/qquickwebenginehistory_p.h
+++ b/src/webengine/api/qquickwebenginehistory_p.h
@@ -67,7 +67,7 @@ public:
private:
QQuickWebEngineHistoryListModel();
- Q_DECLARE_PRIVATE(QQuickWebEngineHistoryListModel);
+ Q_DECLARE_PRIVATE(QQuickWebEngineHistoryListModel)
QScopedPointer<QQuickWebEngineHistoryListModelPrivate> d_ptr;
friend class QQuickWebEngineHistory;
@@ -98,7 +98,7 @@ public:
private:
QQuickWebEngineHistory();
- Q_DECLARE_PRIVATE(QQuickWebEngineHistory);
+ Q_DECLARE_PRIVATE(QQuickWebEngineHistory)
QScopedPointer<QQuickWebEngineHistoryPrivate> d_ptr;
};