From: Claudio Cambra Date: Fri, 9 Dec 2022 13:36:05 +0000 (+0100) Subject: Remove semicolons from Q_UNUSED macros X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~11^2~78^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4a42aee17e0ace308940a9ebfdba456aedc4d8ad;p=nextcloud-desktop.git Remove semicolons from Q_UNUSED macros Signed-off-by: Claudio Cambra --- diff --git a/src/gui/systray.cpp b/src/gui/systray.cpp index 4d96ab1df..f9106ea8d 100644 --- a/src/gui/systray.cpp +++ b/src/gui/systray.cpp @@ -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 }