From 672a83cfc4760cbbac0c2ec5459da5e7a64eb518 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 26 Nov 2009 07:00:18 +0000 Subject: [PATCH] - Added qBittorrent icon to libnotify notifications --- src/GUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI.cpp b/src/GUI.cpp index fddbe3b6d..d5ec58fbf 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -809,7 +809,7 @@ void GUI::showNotificationBaloon(QString title, QString msg) const { #ifdef WITH_LIBNOTIFY if (notify_init ("summary-body")) { NotifyNotification* notification; - notification = notify_notification_new (title.toLocal8Bit().data(), msg.toLocal8Bit().data(), 0, 0); + notification = notify_notification_new (title.toLocal8Bit().data(), msg.toLocal8Bit().data(), "qbittorrent", 0); GError* error = 0; gboolean success = notify_notification_show (notification, &error); notify_uninit ();