summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLars Schmertmann <Lars.Schmertmann@governikus.de>2020-06-23 17:01:08 +0200
committerLars Schmertmann <Lars.Schmertmann@governikus.de>2020-06-24 19:42:13 +0200
commit5b18c6d4b7cd5c24733d4e92f3d42771c9adf3c2 (patch)
treeea696324982563104b029b0117afb7e3304a8bef /tools
parentfe1360a3868783c00d3979259583bf0dfe5f82da (diff)
Add ; to Q_UNUSED
This is required to remove the ; from the macro with Qt 6. Task-number: QTBUG-82978 Change-Id: Ie1081f1a8a35e1ae7f57697dafee066969463967 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'tools')
-rw-r--r--tools/testcon/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testcon/mainwindow.cpp b/tools/testcon/mainwindow.cpp
index 5bee9c4..1e5347e 100644
--- a/tools/testcon/mainwindow.cpp
+++ b/tools/testcon/mainwindow.cpp
@@ -476,7 +476,7 @@ bool MainWindow::loadScript(const QString &file)
}
return script;
#else // !QT_NO_QAXSCRIPT
- Q_UNUSED(file)
+ Q_UNUSED(file);
noScriptMessage(this);
return false;
#endif