From c019e19109e0c306f0fc7badb2c84667e962b2d8 Mon Sep 17 00:00:00 2001 From: lupoDharkael Date: Tue, 26 Dec 2017 14:23:29 +0100 Subject: [PATCH] Use tray notifications in Windows --- src/utils/systemnotification.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/systemnotification.cpp b/src/utils/systemnotification.cpp index b092fb1e..3516e450 100644 --- a/src/utils/systemnotification.cpp +++ b/src/utils/systemnotification.cpp @@ -45,7 +45,7 @@ void SystemNotification::sendMessage( << timeout; //timeout m_interface->callWithArgumentList(QDBus::AutoDetect, "Notify", args); #else -#endif auto c = Controller::getInstance(); - c->sendTrayNotification(title, text, timeout); + c->sendTrayNotification(text, title, timeout); +#endif }