looks better

This commit is contained in:
Patrick von Reth 2011-07-23 13:18:55 +02:00
parent c914445e0e
commit 8b84a18172
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ uint FreedesktopNotification_Frontend::Notify(const QString &app_name, uint repl
#else
appIcon = SnoreIcon(":/root/images/freedesktop-dbus.png");
#endif
Application *a = new Application(app_name,SnoreIcon(appIcon));
a->addAlert(new Alert("DBus Alert","DBus Alert",SnoreIcon(":/root/images/freedesktop-dbus.png")));
Application *a = new Application(app_name,appIcon);
a->addAlert(new Alert("DBus Alert","DBus Alert",appIcon));
snore()->addApplication(a);
snore()->applicationIsInitialized(a);
}