diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-12-13 02:51:07 +0800 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-12-14 00:58:50 +0800 |
commit | c6371ec63c928c848cbb5474cb005af5cc414230 (patch) | |
tree | 7c1f174c6e11a64bbe30a77fa7226e7aef36f133 /libempathy-gtk/empathy-ui-utils.c | |
parent | 92ab34517a94d36ced95514e4fdbde17b2e6004f (diff) | |
download | gsoc2013-empathy-c6371ec63c928c848cbb5474cb005af5cc414230.tar gsoc2013-empathy-c6371ec63c928c848cbb5474cb005af5cc414230.tar.gz gsoc2013-empathy-c6371ec63c928c848cbb5474cb005af5cc414230.tar.bz2 gsoc2013-empathy-c6371ec63c928c848cbb5474cb005af5cc414230.tar.lz gsoc2013-empathy-c6371ec63c928c848cbb5474cb005af5cc414230.tar.xz gsoc2013-empathy-c6371ec63c928c848cbb5474cb005af5cc414230.tar.zst gsoc2013-empathy-c6371ec63c928c848cbb5474cb005af5cc414230.zip |
Bug 637097 — Port to latest folks API changes
Catch up with three interface renamings which have happened in folks master.
This bumps Empathy's folks dependency to 0.3.3. Closes: bgo#637097
Diffstat (limited to 'libempathy-gtk/empathy-ui-utils.c')
-rw-r--r-- | libempathy-gtk/empathy-ui-utils.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c index 4c1287424..043c03eb3 100644 --- a/libempathy-gtk/empathy-ui-utils.c +++ b/libempathy-gtk/empathy-ui-utils.c @@ -232,7 +232,8 @@ empathy_icon_name_for_individual (FolksIndividual *individual) TpConnectionPresenceType presence; folks_presence = - folks_presence_get_presence_type (FOLKS_PRESENCE (individual)); + folks_has_presence_get_presence_type ( + FOLKS_HAS_PRESENCE (individual)); presence = empathy_folks_presence_type_to_tp (folks_presence); return empathy_icon_name_for_presence (presence); @@ -632,7 +633,8 @@ empathy_pixbuf_avatar_from_individual_scaled_async ( callback, user_data, empathy_pixbuf_avatar_from_individual_scaled_async); - avatar_file = folks_avatar_get_avatar (FOLKS_AVATAR (individual)); + avatar_file = + folks_has_avatar_get_avatar (FOLKS_HAS_AVATAR (individual)); if (avatar_file == NULL) goto out; |