summaryrefslogtreecommitdiff
path: root/tools/glib-client-marshaller-gen.py
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.co.uk>2012-07-02 15:37:05 +0200
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-07-03 12:09:56 +0200
commit4b7a97be0f8250af48c5b9f97cace813bc64c0f8 (patch)
treed438c36ea84e7b08d2d1c4abf0b197f1b4c81275 /tools/glib-client-marshaller-gen.py
parentb1046b3ee4cdd00323a4267a994dc67865a170b0 (diff)
downloadtelepathy-logger-4b7a97be0f8250af48c5b9f97cace813bc64c0f8.tar.gz
Update tools/ copy from telepathy-glib
This avoid single include from generated code
Diffstat (limited to 'tools/glib-client-marshaller-gen.py')
-rw-r--r--[-rwxr-xr-x]tools/glib-client-marshaller-gen.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/glib-client-marshaller-gen.py b/tools/glib-client-marshaller-gen.py
index 5444725..cb27d63 100755..100644
--- a/tools/glib-client-marshaller-gen.py
+++ b/tools/glib-client-marshaller-gen.py
@@ -40,7 +40,8 @@ class Generator(object):
for marshaller in all:
rhs = self.marshallers[marshaller]
- print ' dbus_g_object_register_marshaller (%s,' % marshaller
+ print ' dbus_g_object_register_marshaller ('
+ print ' g_cclosure_marshal_generic,'
print ' G_TYPE_NONE, /* return */'
for type in rhs:
print ' G_TYPE_%s,' % type.replace('VOID', 'NONE')