From eb087fa80fce3b765dbba900144b7f52311d2ff4 Mon Sep 17 00:00:00 2001 From: Lars Schmertmann Date: Tue, 23 Jun 2020 16:10:52 +0200 Subject: 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 --- src/input/frontend/qinputdeviceplugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/input/frontend') 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 ¶mList) { - Q_UNUSED(key) - Q_UNUSED(paramList) + Q_UNUSED(key); + Q_UNUSED(paramList); return nullptr; } -- cgit v1.2.3