From 53aa7c1e6546214568969fe727926f7740a26127 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 15 Sep 2010 15:23:14 +0100 Subject: Port Empathy to use FolksAliasable and FolksGroupable FolksAliasable is the new name for FolksAlias, and FolksGroupable is the new name for FolksGroups. --- libempathy/empathy-contact.c | 14 +++++++------- libempathy/empathy-individual-manager.c | 6 +++--- libempathy/empathy-utils.c | 2 +- libempathy/empathy-utils.h | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) (limited to 'libempathy') diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 6eaa8c3cd..a7aa0e704 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -703,12 +703,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_ALIAS (persona)) + if (persona != NULL && FOLKS_IS_ALIASABLE (persona)) { DEBUG ("Setting alias for contact %s to %s", empathy_contact_get_id (contact), alias); - folks_alias_set_alias (FOLKS_ALIAS (persona), alias); + folks_aliasable_set_alias (FOLKS_ALIASABLE (persona), alias); } if (tp_strdiff (alias, priv->alias)) @@ -726,10 +726,10 @@ groups_change_group_cb (GObject *source, GAsyncResult *result, gpointer user_data) { - FolksGroups *groups = FOLKS_GROUPS (source); + FolksGroupable *groupable = FOLKS_GROUPABLE (source); GError *error = NULL; - folks_groups_change_group_finish (groups, result, &error); + folks_groupable_change_group_finish (groupable, result, &error); if (error != NULL) { g_warning ("failed to change group: %s", error->message); @@ -753,8 +753,8 @@ empathy_contact_change_group (EmpathyContact *contact, const gchar *group, persona = empathy_contact_get_persona (contact); if (persona != NULL) { - if (FOLKS_IS_GROUPS (persona)) - folks_groups_change_group (FOLKS_GROUPS (persona), group, is_member, + if (FOLKS_IS_GROUPABLE (persona)) + folks_groupable_change_group (FOLKS_GROUPABLE (persona), group, is_member, groups_change_group_cb, contact); return; } @@ -918,7 +918,7 @@ empathy_contact_set_persona (EmpathyContact *contact, /* Set the persona's groups */ if (priv->groups != NULL) { - folks_groups_set_groups (FOLKS_GROUPS (persona), priv->groups); + folks_groupable_set_groups (FOLKS_GROUPABLE (persona), priv->groups); g_hash_table_destroy (priv->groups); priv->groups = NULL; } diff --git a/libempathy/empathy-individual-manager.c b/libempathy/empathy-individual-manager.c index 968ff1c98..d707e17bf 100644 --- a/libempathy/empathy-individual-manager.c +++ b/libempathy/empathy-individual-manager.c @@ -464,10 +464,10 @@ groups_change_group_cb (GObject *source, GAsyncResult *result, gpointer user_data) { - FolksGroups *groups = FOLKS_GROUPS (source); + FolksGroupable *groupable = FOLKS_GROUPABLE (source); GError *error = NULL; - folks_groups_change_group_finish (groups, result, &error); + folks_groupable_change_group_finish (groupable, result, &error); if (error != NULL) { g_warning ("failed to change group: %s", error->message); @@ -480,7 +480,7 @@ remove_group_cb (const gchar *id, FolksIndividual *individual, const gchar *group) { - folks_groups_change_group (FOLKS_GROUPS (individual), group, FALSE, + folks_groupable_change_group (FOLKS_GROUPABLE (individual), group, FALSE, groups_change_group_cb, NULL); } diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index 5e7befd27..c479f99f3 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -765,7 +765,7 @@ empathy_contact_dup_from_folks_individual (FolksIndividual *individual) TpChannelGroupChangeReason tp_channel_group_change_reason_from_folks_groups_change_reason ( - FolksGroupsChangeReason reason) + FolksGroupableChangeReason reason) { return (TpChannelGroupChangeReason) reason; } diff --git a/libempathy/empathy-utils.h b/libempathy/empathy-utils.h index 0f8adc33e..ca184f589 100644 --- a/libempathy/empathy-utils.h +++ b/libempathy/empathy-utils.h @@ -98,7 +98,7 @@ void empathy_connect_new_account (TpAccount *account, TpConnectionPresenceType empathy_folks_presence_type_to_tp (FolksPresenceType type); gboolean empathy_folks_individual_contains_contact (FolksIndividual *individual); EmpathyContact * empathy_contact_dup_from_folks_individual (FolksIndividual *individual); -TpChannelGroupChangeReason tp_channel_group_change_reason_from_folks_groups_change_reason (FolksGroupsChangeReason reason); +TpChannelGroupChangeReason tp_channel_group_change_reason_from_folks_groups_change_reason (FolksGroupableChangeReason reason); gchar * empathy_get_x509_certificate_hostname (gnutls_x509_crt_t cert); -- cgit v1.2.3