aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-utils.c
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-08 18:35:02 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-08 18:35:02 +0800
commite98ae9bde97e290c0f54593af1cb30905bb9055e (patch)
tree12c447b1faf753846c625cb267891f8621f1dd74 /libempathy/empathy-utils.c
parent13f92652db89b2c15c3302b4af7560a4e4ee22c9 (diff)
downloadgsoc2013-empathy-e98ae9bde97e290c0f54593af1cb30905bb9055e.tar
gsoc2013-empathy-e98ae9bde97e290c0f54593af1cb30905bb9055e.tar.gz
gsoc2013-empathy-e98ae9bde97e290c0f54593af1cb30905bb9055e.tar.bz2
gsoc2013-empathy-e98ae9bde97e290c0f54593af1cb30905bb9055e.tar.lz
gsoc2013-empathy-e98ae9bde97e290c0f54593af1cb30905bb9055e.tar.xz
gsoc2013-empathy-e98ae9bde97e290c0f54593af1cb30905bb9055e.tar.zst
gsoc2013-empathy-e98ae9bde97e290c0f54593af1cb30905bb9055e.zip
Add an GType of ao
Diffstat (limited to 'libempathy/empathy-utils.c')
-rw-r--r--libempathy/empathy-utils.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c
index fd54c9a98..69779d99f 100644
--- a/libempathy/empathy-utils.c
+++ b/libempathy/empathy-utils.c
@@ -378,3 +378,13 @@ empathy_uint_compare (gconstpointer a,
return *(guint *) a - *(guint *) b;
}
+GType
+empathy_type_dbus_ao (void)
+{
+ static GType t = 0;
+
+ if (G_UNLIKELY (t == 0))
+ t = dbus_g_type_get_collection ("GPtrArray", DBUS_TYPE_G_OBJECT_PATH);
+
+ return t;
+}