summaryrefslogtreecommitdiffstats
path: root/src/logic
diff options
context:
space:
mode:
authorLars Schmertmann <Lars.Schmertmann@governikus.de>2020-06-23 16:10:52 +0200
committerLars Schmertmann <Lars.Schmertmann@governikus.de>2020-06-24 19:42:03 +0200
commiteb087fa80fce3b765dbba900144b7f52311d2ff4 (patch)
tree99dd336db962496f751282acc0accd70ae37a183 /src/logic
parent46f663c2e923b0b35f08fbf619c78427e8bf82ae (diff)
Add ; to Q_UNUSED
This is required to remove the ; from the macro with Qt 6. Task-number: QTBUG-82978 Change-Id: I2e126d0be8efa0aa89c4a91a681b549f38c8cec4 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/logic')
-rw-r--r--src/logic/handler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logic/handler.cpp b/src/logic/handler.cpp
index be6d03c3d..009d87be4 100644
--- a/src/logic/handler.cpp
+++ b/src/logic/handler.cpp
@@ -56,7 +56,7 @@ Handler::Handler()
void Handler::syncFromFrontEnd(const Qt3DCore::QNode *frontEnd, bool firstTime)
{
- Q_UNUSED(frontEnd)
+ Q_UNUSED(frontEnd);
if (firstTime)
m_logicManager->appendHandler(this);
}