diff options
author | Travis Reitter <travis.reitter@collabora.co.uk> | 2011-03-11 14:01:09 +0800 |
---|---|---|
committer | Travis Reitter <travis.reitter@collabora.co.uk> | 2011-03-15 02:46:52 +0800 |
commit | abf8b17d703c071f4fe91c09bac97c09314a2dc0 (patch) | |
tree | 5835eee865162e0e91b56cd4526c41ac776573f1 /libempathy/empathy-individual-manager.c | |
parent | 07434728e84556fd321ea4a38f828035803ee76b (diff) | |
download | gsoc2013-empathy-abf8b17d703c071f4fe91c09bac97c09314a2dc0.tar gsoc2013-empathy-abf8b17d703c071f4fe91c09bac97c09314a2dc0.tar.gz gsoc2013-empathy-abf8b17d703c071f4fe91c09bac97c09314a2dc0.tar.bz2 gsoc2013-empathy-abf8b17d703c071f4fe91c09bac97c09314a2dc0.tar.lz gsoc2013-empathy-abf8b17d703c071f4fe91c09bac97c09314a2dc0.tar.xz gsoc2013-empathy-abf8b17d703c071f4fe91c09bac97c09314a2dc0.tar.zst gsoc2013-empathy-abf8b17d703c071f4fe91c09bac97c09314a2dc0.zip |
Adjust for Folks Groupable -> GroupDetails rename
Helps bgo#644470 - Empathy needs to catch up with Folks interface name change
(API/ABI breaks)
Diffstat (limited to 'libempathy/empathy-individual-manager.c')
-rw-r--r-- | libempathy/empathy-individual-manager.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 |