summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2024-08-05 20:50:26 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2024-08-05 20:50:26 +0200
commitc8c3d1c6116af01996f8fa71aa9293468b2fa55c (patch)
tree84973122ce2372026dd4bae4a7fb49daff1b34a7 /src
parentBump mtxclient to fix fmt build errors (diff)
downloadnheko-c8c3d1c6116af01996f8fa71aa9293468b2fa55c.tar.xz
Suppress warning for unused previousCount on macOS
Diffstat (limited to 'src')
-rw-r--r--src/TrayIcon.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/TrayIcon.cpp b/src/TrayIcon.cpp

index 44bfb6ca..33e1e787 100644 --- a/src/TrayIcon.cpp +++ b/src/TrayIcon.cpp
@@ -128,6 +128,8 @@ TrayIcon::setUnreadCount(int count) setIcon(QIcon(i)); previousCount = count; } +#else + (void)previousCount; #endif QString toolTip = QLatin1String("nheko");