diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-09-15 22:23:14 +0800 |
---|---|---|
committer | Travis Reitter <travis.reitter@collabora.co.uk> | 2010-10-05 00:02:09 +0800 |
commit | 53aa7c1e6546214568969fe727926f7740a26127 (patch) | |
tree | c5f83e4ad2a0ec37b05de040f1a6c000052c7665 /libempathy-gtk/empathy-individual-view.c | |
parent | 3195780450fdcfe8678bf29e5fd20cb957283bc2 (diff) | |
download | gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.gz gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.bz2 gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.lz gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.xz gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.zst gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.zip |
Port Empathy to use FolksAliasable and FolksGroupable
FolksAliasable is the new name for FolksAlias, and FolksGroupable
is the new name for FolksGroups.
Diffstat (limited to 'libempathy-gtk/empathy-individual-view.c')
-rw-r--r-- | libempathy-gtk/empathy-individual-view.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-individual-view.c b/libempathy-gtk/empathy-individual-view.c index ee0e06c65..ebc71a10a 100644 --- a/libempathy-gtk/empathy-individual-view.c +++ b/libempathy-gtk/empathy-individual-view.c @@ -236,10 +236,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); @@ -385,13 +385,13 @@ real_drag_individual_received_cb (EmpathyIndividualView *self, if (new_group != NULL) { - folks_groups_change_group (FOLKS_GROUPS (individual), new_group, TRUE, + folks_groupable_change_group (FOLKS_GROUPABLE (individual), new_group, TRUE, groups_change_group_cb, NULL); } if (old_group != NULL && action == GDK_ACTION_MOVE) { - folks_groups_change_group (FOLKS_GROUPS (individual), old_group, + folks_groupable_change_group (FOLKS_GROUPABLE (individual), old_group, FALSE, groups_change_group_cb, NULL); } } |