diff options
author | Travis Reitter <travis.reitter@collabora.co.uk> | 2011-03-11 13:12:13 +0800 |
---|---|---|
committer | Travis Reitter <travis.reitter@collabora.co.uk> | 2011-03-15 02:46:52 +0800 |
commit | 36eb0b9dec61bd0040161535f27fc4bbbd4511ca (patch) | |
tree | 5e698239030d729066fe7063a7350b8d7d2faf6b /libempathy-gtk/empathy-individual-view.c | |
parent | 5751c344bd2783df6086b427ebcebdff9a77e63c (diff) | |
download | gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.gz gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.bz2 gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.lz gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.xz gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.zst gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.zip |
Adjust for Folks Aliasable -> AliasDetails rename
Helps bgo#644470 - Empathy needs to catch up with Folks interface name change
(API/ABI breaks)
Diffstat (limited to 'libempathy-gtk/empathy-individual-view.c')
-rw-r--r-- | libempathy-gtk/empathy-individual-view.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-individual-view.c b/libempathy-gtk/empathy-individual-view.c index 2c1f3b76d..9bad850d3 100644 --- a/libempathy-gtk/empathy-individual-view.c +++ b/libempathy-gtk/empathy-individual-view.c @@ -1712,7 +1712,7 @@ individual_view_is_visible_individual (EmpathyIndividualView *self, return (priv->show_offline || is_online || is_favorite); /* check alias name */ - str = folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)); + str = folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)); if (empathy_live_search_match (live, str)) return TRUE; @@ -2436,7 +2436,8 @@ individual_view_remove_activate_cb (GtkMenuItem *menuitem, text = g_strdup_printf ( _("Do you really want to remove the contact '%s'?"), - folks_aliasable_get_alias (FOLKS_ALIASABLE (individual))); + folks_alias_details_get_alias ( + FOLKS_ALIAS_DETAILS (individual))); } else { @@ -2446,7 +2447,8 @@ individual_view_remove_activate_cb (GtkMenuItem *menuitem, _("Do you really want to remove the linked contact '%s'? " "Note that this will remove all the contacts which make up " "this linked contact."), - folks_aliasable_get_alias (FOLKS_ALIASABLE (individual))); + folks_alias_details_get_alias ( + FOLKS_ALIAS_DETAILS (individual))); } |