diff options
author | William Jon McCann <jmccann@redhat.com> | 2010-10-12 14:15:51 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-10-19 23:43:57 +0800 |
commit | 8909adc8fa36c39d26d21bc7e3c3065bb1b6b74d (patch) | |
tree | c4e8ce2cf99f7f5c3707eaf21dce01c7cd017c71 /src/empathy-status-icon.c | |
parent | 0ca576c2a57d4628328696b2803553d2de748c87 (diff) | |
download | gsoc2013-empathy-8909adc8fa36c39d26d21bc7e3c3065bb1b6b74d.tar gsoc2013-empathy-8909adc8fa36c39d26d21bc7e3c3065bb1b6b74d.tar.gz gsoc2013-empathy-8909adc8fa36c39d26d21bc7e3c3065bb1b6b74d.tar.bz2 gsoc2013-empathy-8909adc8fa36c39d26d21bc7e3c3065bb1b6b74d.tar.lz gsoc2013-empathy-8909adc8fa36c39d26d21bc7e3c3065bb1b6b74d.tar.xz gsoc2013-empathy-8909adc8fa36c39d26d21bc7e3c3065bb1b6b74d.tar.zst gsoc2013-empathy-8909adc8fa36c39d26d21bc7e3c3065bb1b6b74d.zip |
Port to libnotify 0.7.0
https://bugzilla.gnome.org/show_bug.cgi?id=631944
Diffstat (limited to 'src/empathy-status-icon.c')
-rw-r--r-- | src/empathy-status-icon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-status-icon.c b/src/empathy-status-icon.c index a062f5169..e61e0cfd4 100644 --- a/src/empathy-status-icon.c +++ b/src/empathy-status-icon.c @@ -206,8 +206,8 @@ status_icon_update_notification (EmpathyStatusIcon *icon) to an existing notification with the same title. In this way the previous message will not be lost: the new message will appear below it, in the same notification */ - notification = notify_notification_new_with_status_icon - (priv->event->header, message_esc, NULL, priv->icon); + notification = notify_notification_new + (priv->event->header, message_esc, NULL); if (priv->notification == NULL) { priv->notification = notification; |