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 | |
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')
-rw-r--r-- | libempathy/empathy-contact.c | 4 | ||||
-rw-r--r-- | libempathy/empathy-individual-manager.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 73539b406..3218e298f 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -729,12 +729,12 @@ empathy_contact_set_alias (EmpathyContact *contact, /* Set the alias on the persona if possible */ persona = empathy_contact_get_persona (contact); - if (persona != NULL && FOLKS_IS_ALIASABLE (persona)) + if (persona != NULL && FOLKS_IS_ALIAS_DETAILS (persona)) { DEBUG ("Setting alias for contact %s to %s", empathy_contact_get_id (contact), alias); - folks_aliasable_set_alias (FOLKS_ALIASABLE (persona), alias); + folks_alias_details_set_alias (FOLKS_ALIAS_DETAILS (persona), alias); } if (tp_strdiff (alias, priv->alias)) diff --git a/libempathy/empathy-individual-manager.c b/libempathy/empathy-individual-manager.c index 137d00f1f..8217d3cc6 100644 --- a/libempathy/empathy-individual-manager.c +++ b/libempathy/empathy-individual-manager.c @@ -479,7 +479,7 @@ empathy_individual_manager_remove (EmpathyIndividualManager *self, DEBUG ("removing individual %s (%s)", folks_individual_get_id (individual), - folks_aliasable_get_alias (FOLKS_ALIASABLE (individual))); + folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual))); folks_individual_aggregator_remove_individual (priv->aggregator, individual, aggregator_remove_individual_cb, self); |