diff options
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-contact.c | 13 | ||||
-rw-r--r-- | libempathy/empathy-individual-manager.c | 8 | ||||
-rw-r--r-- | libempathy/empathy-utils.c | 2 | ||||
-rw-r--r-- | libempathy/empathy-utils.h | 2 |
4 files changed, 13 insertions, 12 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 3218e298f..ad462b203 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -752,10 +752,10 @@ groups_change_group_cb (GObject *source, GAsyncResult *result, gpointer user_data) { - FolksGroupable *groupable = FOLKS_GROUPABLE (source); + FolksGroupDetails *group_details = FOLKS_GROUP_DETAILS (source); GError *error = NULL; - folks_groupable_change_group_finish (groupable, result, &error); + folks_group_details_change_group_finish (group_details, result, &error); if (error != NULL) { g_warning ("failed to change group: %s", error->message); @@ -779,9 +779,9 @@ empathy_contact_change_group (EmpathyContact *contact, const gchar *group, persona = empathy_contact_get_persona (contact); if (persona != NULL) { - if (FOLKS_IS_GROUPABLE (persona)) - folks_groupable_change_group (FOLKS_GROUPABLE (persona), group, is_member, - groups_change_group_cb, contact); + if (FOLKS_IS_GROUP_DETAILS (persona)) + folks_group_details_change_group (FOLKS_GROUP_DETAILS (persona), group, + is_member, groups_change_group_cb, contact); return; } @@ -944,7 +944,8 @@ empathy_contact_set_persona (EmpathyContact *contact, /* Set the persona's groups */ if (priv->groups != NULL) { - folks_groupable_set_groups (FOLKS_GROUPABLE (persona), priv->groups); + folks_group_details_set_groups (FOLKS_GROUP_DETAILS (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 044a881a8..861cfa123 100644 --- a/libempathy/empathy-individual-manager.c +++ b/libempathy/empathy-individual-manager.c @@ -573,10 +573,10 @@ groups_change_group_cb (GObject *source, GAsyncResult *result, gpointer user_data) { - FolksGroupable *groupable = FOLKS_GROUPABLE (source); + FolksGroupDetails *group_details = FOLKS_GROUP_DETAILS (source); GError *error = NULL; - folks_groupable_change_group_finish (groupable, result, &error); + folks_group_details_change_group_finish (group_details, result, &error); if (error != NULL) { g_warning ("failed to change group: %s", error->message); @@ -589,8 +589,8 @@ remove_group_cb (const gchar *id, FolksIndividual *individual, const gchar *group) { - folks_groupable_change_group (FOLKS_GROUPABLE (individual), group, FALSE, - groups_change_group_cb, NULL); + folks_group_details_change_group (FOLKS_GROUP_DETAILS (individual), group, + FALSE, groups_change_group_cb, NULL); } void diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index 922c0d84e..775a320c7 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -824,7 +824,7 @@ empathy_contact_dup_from_folks_individual (FolksIndividual *individual) TpChannelGroupChangeReason tp_channel_group_change_reason_from_folks_groups_change_reason ( - FolksGroupableChangeReason reason) + FolksGroupDetailsChangeReason reason) { return (TpChannelGroupChangeReason) reason; } diff --git a/libempathy/empathy-utils.h b/libempathy/empathy-utils.h index 6e16f0a77..de879021e 100644 --- a/libempathy/empathy-utils.h +++ b/libempathy/empathy-utils.h @@ -108,7 +108,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 (FolksGroupableChangeReason reason); +TpChannelGroupChangeReason tp_channel_group_change_reason_from_folks_groups_change_reason (FolksGroupDetailsChangeReason reason); TpfPersonaStore * empathy_get_persona_store_for_connection (TpConnection *connection); gboolean empathy_connection_can_add_personas (TpConnection *connection); gboolean empathy_connection_can_alias_personas (TpConnection *connection); |