mirror of
https://github.com/transmission/transmission
synced 2024-12-24 16:52:39 +00:00
(trunk gtk) #3710 "Handle API changes to libnotify 0.7" -- fixed. The cpp hack is borrowed from qbittorrent and torium... :)
This commit is contained in:
parent
38b04656dd
commit
865c0853d5
1 changed files with 6 additions and 2 deletions
|
@ -129,8 +129,12 @@ tr_notify_send( TrTorrent *tor )
|
|||
NotifyNotification * n;
|
||||
|
||||
n = notify_notification_new( _( "Torrent Complete" ),
|
||||
info->name,
|
||||
NULL, NULL );
|
||||
info->name, NULL
|
||||
/* the fourth argument was removed in libnotify 0.7.0 */
|
||||
#if !defined(NOTIFY_VERSION_MINOR) || (NOTIFY_VERSION_MAJOR == 0 && NOTIFY_VERSION_MINOR < 7)
|
||||
, NULL
|
||||
#endif
|
||||
);
|
||||
addIcon( n );
|
||||
|
||||
if( can_support_actions( ) )
|
||||
|
|
Loading…
Reference in a new issue