diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2007-04-27 22:02:59 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-04-27 22:02:59 +0800 |
commit | 3e0960a8f543917145421d44a208177289028121 (patch) | |
tree | 0ffc15c04b43ffd52ac7a06b8e465437d520e59b /libempathy-gtk | |
parent | a6dd26148d5cd05475d27ab26c395e60beb797b2 (diff) | |
download | gsoc2013-empathy-3e0960a8f543917145421d44a208177289028121.tar gsoc2013-empathy-3e0960a8f543917145421d44a208177289028121.tar.gz gsoc2013-empathy-3e0960a8f543917145421d44a208177289028121.tar.bz2 gsoc2013-empathy-3e0960a8f543917145421d44a208177289028121.tar.lz gsoc2013-empathy-3e0960a8f543917145421d44a208177289028121.tar.xz gsoc2013-empathy-3e0960a8f543917145421d44a208177289028121.tar.zst gsoc2013-empathy-3e0960a8f543917145421d44a208177289028121.zip |
[darcs-to-svn @ Only one presence per contact]
svn path=/trunk/; revision=9
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/gossip-contact-list.c | 2 | ||||
-rw-r--r-- | libempathy-gtk/gossip-private-chat.c | 2 | ||||
-rw-r--r-- | libempathy-gtk/gossip-ui-utils.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/gossip-contact-list.c b/libempathy-gtk/gossip-contact-list.c index 6e1573d8f..3a49d12d0 100644 --- a/libempathy-gtk/gossip-contact-list.c +++ b/libempathy-gtk/gossip-contact-list.c @@ -793,7 +793,7 @@ contact_list_contact_added_cb (EmpathyContactManager *manager, g_signal_connect (contact, "notify::groups", G_CALLBACK (contact_list_contact_groups_updated_cb), list); - g_signal_connect (contact, "notify::presences", + g_signal_connect (contact, "notify::presence", G_CALLBACK (contact_list_contact_updated_cb), list); g_signal_connect (contact, "notify::name", diff --git a/libempathy-gtk/gossip-private-chat.c b/libempathy-gtk/gossip-private-chat.c index 229895051..1ceb6d4a5 100644 --- a/libempathy-gtk/gossip-private-chat.c +++ b/libempathy-gtk/gossip-private-chat.c @@ -363,7 +363,7 @@ private_chat_setup (GossipPrivateChat *chat, G_CALLBACK (private_chat_contact_updated_cb), chat); g_signal_connect (priv->contact, - "notify::presences", + "notify::presence", G_CALLBACK (private_chat_contact_presence_updated_cb), chat); diff --git a/libempathy-gtk/gossip-ui-utils.c b/libempathy-gtk/gossip-ui-utils.c index 05d319c50..82879619e 100644 --- a/libempathy-gtk/gossip-ui-utils.c +++ b/libempathy-gtk/gossip-ui-utils.c @@ -401,7 +401,7 @@ gossip_pixbuf_for_contact (GossipContact *contact) g_return_val_if_fail (GOSSIP_IS_CONTACT (contact), gossip_pixbuf_offline ()); - presence = gossip_contact_get_active_presence (contact); + presence = gossip_contact_get_presence (contact); if (presence) { return gossip_pixbuf_for_presence (presence); |