summaryrefslogtreecommitdiffstats
path: root/src/activeqt/control/qaxfactory.cpp
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 /src/activeqt/control/qaxfactory.cpp
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 'src/activeqt/control/qaxfactory.cpp')
-rw-r--r--src/activeqt/control/qaxfactory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/activeqt/control/qaxfactory.cpp b/src/activeqt/control/qaxfactory.cpp
index 2faf508..ba8a566 100644
--- a/src/activeqt/control/qaxfactory.cpp
+++ b/src/activeqt/control/qaxfactory.cpp
@@ -241,7 +241,7 @@ QUuid QAxFactory::eventsID(const QString &key) const
void QAxFactory::registerClass(const QString &key, QSettings *settings) const
{
Q_UNUSED(key);
- Q_UNUSED(settings)
+ Q_UNUSED(settings);
}
/*!
@@ -255,7 +255,7 @@ void QAxFactory::registerClass(const QString &key, QSettings *settings) const
void QAxFactory::unregisterClass(const QString &key, QSettings *settings) const
{
Q_UNUSED(key);
- Q_UNUSED(settings)
+ Q_UNUSED(settings);
}
/*!
@@ -317,7 +317,7 @@ QString QAxFactory::exposeToSuperClass(const QString &key) const
*/
bool QAxFactory::stayTopLevel(const QString &key) const
{
- Q_UNUSED(key)
+ Q_UNUSED(key);
return false;
}