summaryrefslogtreecommitdiff
path: root/telepathy-glib/call-channel.c
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.co.uk>2012-04-23 13:39:02 +0200
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-04-23 13:39:02 +0200
commit032592af28cf29069b2bcf7c33fb0ae560587158 (patch)
treec993bf2f46955ca7e61425bfe4710137e10f8688 /telepathy-glib/call-channel.c
parentc193a39211ffdef8e724c153ae13bf00b31dc7eb (diff)
downloadtelepathy-glib-032592af28cf29069b2bcf7c33fb0ae560587158.tar.gz
Use g_ptr_array_new_full() now that we can depend on glib 2.30
Diffstat (limited to 'telepathy-glib/call-channel.c')
-rw-r--r--telepathy-glib/call-channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/call-channel.c b/telepathy-glib/call-channel.c
index cdd619d1a..b346e4f22 100644
--- a/telepathy-glib/call-channel.c
+++ b/telepathy-glib/call-channel.c
@@ -262,7 +262,7 @@ _tp_call_members_convert_array (TpConnection *connection,
GPtrArray *result;
guint i;
- result = _tp_g_ptr_array_new_full (array->len, g_object_unref);
+ result = g_ptr_array_new_full (array->len, g_object_unref);
for (i = 0; i < array->len; i++)
{
@@ -509,7 +509,7 @@ update_call_members (TpCallChannel *self,
* contact features on the factory, in which case this becomes no-op.
*/
- contacts = _tp_g_ptr_array_new_full (g_hash_table_size (updates),
+ contacts = g_ptr_array_new_full (g_hash_table_size (updates),
g_object_unref);
g_hash_table_iter_init (&iter, updates);