summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2014-05-26 15:15:58 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2014-05-26 15:15:58 +0200
commita1d98db343b7d7162fe0085f8d4a90e69af360cb (patch)
tree42a89d7e10235c3a100ae13a6e43a773f834f0b4
parent34cdc354817111f938e5eff45a49a3e3f6f495d4 (diff)
pass a TpMutableContactGroupList to vfunc functionsnext
-rw-r--r--src/contact-list.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/contact-list.c b/src/contact-list.c
index a6f496c..3fdbbcd 100644
--- a/src/contact-list.c
+++ b/src/contact-list.c
@@ -983,7 +983,7 @@ haze_contact_list_groups_init (TpContactGroupListInterface *vtable)
}
static void
-haze_contact_list_set_contact_groups_async (TpBaseContactList *cl,
+haze_contact_list_set_contact_groups_async (TpMutableContactGroupList *cl,
TpHandle contact,
const gchar * const *names,
gsize n_names,
@@ -1042,7 +1042,7 @@ haze_contact_list_set_contact_groups_async (TpBaseContactList *cl,
}
static void
-haze_contact_list_add_to_group_async (TpBaseContactList *cl,
+haze_contact_list_add_to_group_async (TpMutableContactGroupList *cl,
const gchar *group_name,
TpHandleSet *contacts,
GAsyncReadyCallback callback,
@@ -1070,7 +1070,7 @@ haze_contact_list_add_to_group_async (TpBaseContactList *cl,
}
static void
-haze_contact_list_remove_from_group_async (TpBaseContactList *cl,
+haze_contact_list_remove_from_group_async (TpMutableContactGroupList *cl,
const gchar *group_name,
TpHandleSet *contacts,
GAsyncReadyCallback callback,
@@ -1095,7 +1095,7 @@ haze_contact_list_remove_from_group_async (TpBaseContactList *cl,
}
static void
-haze_contact_list_remove_group_async (TpBaseContactList *cl,
+haze_contact_list_remove_group_async (TpMutableContactGroupList *cl,
const gchar *group_name,
GAsyncReadyCallback callback,
gpointer user_data)
@@ -1129,7 +1129,7 @@ haze_contact_list_remove_group_async (TpBaseContactList *cl,
}
static void
-haze_contact_list_set_group_members_async (TpBaseContactList *cl,
+haze_contact_list_set_group_members_async (TpMutableContactGroupList *cl,
const gchar *group_name,
TpHandleSet *contacts,
GAsyncReadyCallback callback,
@@ -1170,7 +1170,7 @@ haze_contact_list_set_group_members_async (TpBaseContactList *cl,
}
static void
-haze_contact_list_rename_group_async (TpBaseContactList *cl,
+haze_contact_list_rename_group_async (TpMutableContactGroupList *cl,
const gchar *old_name,
const gchar *new_name,
GAsyncReadyCallback callback,