1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-21 13:21:52 +02:00

Use icon (hardcoded for now)

This commit is contained in:
Jeff Mitchell
2011-06-22 22:20:39 -04:00
parent 23b6087338
commit ba67e1d557

View File

@@ -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 );
}