summaryrefslogtreecommitdiffstats
path: root/src/input/frontend
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/input/frontend
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/input/frontend')
-rw-r--r--src/input/frontend/qinputdeviceplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/frontend/qinputdeviceplugin.cpp b/src/input/frontend/qinputdeviceplugin.cpp
index cae80c05b..6ac8b3a0c 100644
--- a/src/input/frontend/qinputdeviceplugin.cpp
+++ b/src/input/frontend/qinputdeviceplugin.cpp
@@ -54,8 +54,8 @@ QInputDevicePlugin::~QInputDevicePlugin()
QInputDeviceIntegration *QInputDevicePlugin::create(const QString &key, const QStringList &paramList)
{
- Q_UNUSED(key)
- Q_UNUSED(paramList)
+ Q_UNUSED(key);
+ Q_UNUSED(paramList);
return nullptr;
}