summaryrefslogtreecommitdiff
path: root/telepathy-glib/gtypes.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-04-07 13:47:05 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-04-07 13:52:04 +0200
commitb150833d9144c6d6bb1f3bd35b2918c6f2be5ea9 (patch)
treeabfcd42baecddb24bfc170f373e5ec5b420b4d6e /telepathy-glib/gtypes.c
parentb3604dd16d3cd7ba978babe283a7dc8d742b8e44 (diff)
downloadtelepathy-glib-b150833d9144c6d6bb1f3bd35b2918c6f2be5ea9.tar.gz
tp_type_dbus_array_of_y: use DBUS_TYPE_G_UCHAR_ARRAY
Diffstat (limited to 'telepathy-glib/gtypes.c')
-rw-r--r--telepathy-glib/gtypes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/gtypes.c b/telepathy-glib/gtypes.c
index 028afacb6..ddce0f542 100644
--- a/telepathy-glib/gtypes.c
+++ b/telepathy-glib/gtypes.c
@@ -83,7 +83,7 @@ tp_dbus_specialized_value_slice_new (GType type)
*
* Expands to a call to a function
* that returns the #GType of a #GArray
- * of %G_TYPE_UCHAR.
+ * of %G_TYPE_UCHAR, i.e. the same thing as %DBUS_TYPE_G_UCHAR_ARRAY
*
* Since: 0.11.1
*/
@@ -94,7 +94,7 @@ tp_type_dbus_array_of_y (void)
static GType t = 0;
if (G_UNLIKELY (t == 0))
- t = dbus_g_type_get_collection ("GArray", G_TYPE_UCHAR);
+ t = DBUS_TYPE_G_UCHAR_ARRAY;
return t;
}