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-individual-manager.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libempathy/empathy-individual-manager.c') 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); } -- cgit v1.2.3