Commit 2987cdd5 authored by Wescoeur's avatar Wescoeur

fix(MessagesCountNotifier): remove unused var warning

parent 4f304652
......@@ -65,11 +65,11 @@ void MessagesCountNotifier::notifyUnreadMessagesCount () {
int count = mUnreadMessagesCount > 99 ? 99 : mUnreadMessagesCount;
#if defined(Q_OS_LINUX)
// TODO.
(void)count;
#elif defined(Q_OS_MACOS)
::notifyUnreadMessagesCountMacOS(count);
#elif defined(Q_OS_WIN)
// TODO.
(void)count;
#endif // if defined(Q_OS_LINUX)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment