From ba67e1d557155c8db7d8e91002e1859582b3561a Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Wed, 22 Jun 2011 22:20:39 -0400 Subject: [PATCH] Use icon (hardcoded for now) --- .../infosystem/infoplugins/win/gfwnotifyplugin.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libtomahawk/infosystem/infoplugins/win/gfwnotifyplugin.cpp b/src/libtomahawk/infosystem/infoplugins/win/gfwnotifyplugin.cpp index e0cb17ad6..de8629c7e 100644 --- a/src/libtomahawk/infosystem/infoplugins/win/gfwnotifyplugin.cpp +++ b/src/libtomahawk/infosystem/infoplugins/win/gfwnotifyplugin.cpp @@ -84,5 +84,7 @@ GfwNotifyPlugin::pushInfo( const QString caller, const Tomahawk::InfoSystem::Inf const char* name = "Notification"; const char* title = "Tomahawk"; const char* message = strdup( hash["message"].toLocal8Bit().constData() ); - m_growl->Notify( name, title, message ); + const char* url = ""; + const char* icon = "file:///S:/Program%20Files%20(x86)/Tomahawk/tomahawk-icon-128x128.png"; + m_growl->Notify( name, title, message, url, icon ); }