summaryrefslogtreecommitdiff
path: root/telepathy-glib/base-contact-list.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2011-07-22 10:34:27 +0200
committerXavier Claessens <xclaesse@gmail.com>2011-07-22 10:35:13 +0200
commit66b946b1380c8c68dbf7416e6e268d82409ce2dc (patch)
tree524087aff54daff3e9112ee5d5b98e307a58e608 /telepathy-glib/base-contact-list.c
parent036e5009ded107700ce4812b064cb5c8c572ce5f (diff)
downloadtelepathy-glib-66b946b1380c8c68dbf7416e6e268d82409ce2dc.tar.gz
Rename _tp_g_ptr_array_sized_new_with_free_func() to _tp_g_ptr_array_new_full()
To match the name of the function that will be included in GLib 2.30
Diffstat (limited to 'telepathy-glib/base-contact-list.c')
-rw-r--r--telepathy-glib/base-contact-list.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/telepathy-glib/base-contact-list.c b/telepathy-glib/base-contact-list.c
index c247316a1..1168e7427 100644
--- a/telepathy-glib/base-contact-list.c
+++ b/telepathy-glib/base-contact-list.c
@@ -3634,8 +3634,7 @@ tp_base_contact_list_groups_removed (TpBaseContactList *self,
return;
old_members = tp_handle_set_new (self->priv->contact_repo);
- actually_removed = _tp_g_ptr_array_sized_new_with_free_func (n_removed + 1,
- g_free);
+ actually_removed = _tp_g_ptr_array_new_full (n_removed + 1, g_free);
for (i = 0; i < n_removed; i++)
{