Remove semicolons from Q_UNUSED macros
authorClaudio Cambra <claudio.cambra@nextcloud.com>
Fri, 9 Dec 2022 13:36:05 +0000 (14:36 +0100)
committerClaudio Cambra <claudio.cambra@nextcloud.com>
Fri, 9 Dec 2022 13:36:12 +0000 (14:36 +0100)
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
src/gui/systray.cpp

index 4d96ab1df81e42bb5b1f503d79766fc4d56fa4cb..f9106ea8d6939823d5d9ac896ce3b243c7e50736 100644 (file)
@@ -491,9 +491,9 @@ void Systray::showTalkMessage(const QString &title, const QString &message, cons
 #if defined(Q_OS_MACOS) && defined(BUILD_OWNCLOUD_OSX_BUNDLE)
     sendOsXTalkNotification(title, message, token, replyTo, accountState);
 #else // TODO: Implement custom notifications (i.e. actionable) for other OSes
-    Q_UNUSED(replyTo);
-    Q_UNUSED(token);
-    Q_UNUSED(accountState);
+    Q_UNUSED(replyTo)
+    Q_UNUSED(token)
+    Q_UNUSED(accountState)
     showMessage(title, message);
 #endif
 }