diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-04-03 11:26:36 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-04-03 11:26:36 +0100 |
commit | 6bc9ba234e725f63de65724e19223eb082e9dfe3 (patch) | |
tree | 4a00ae3a882c5343ce26506437a33d7646627b02 | |
parent | a9f4bc06fe2a5a46081c7b27afc229ba9560ae0a (diff) |
Update codegen: include telepathy-glib-dbus.h in generated service code
-rw-r--r-- | tools/glib-ginterface-gen.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/glib-ginterface-gen.py b/tools/glib-ginterface-gen.py index d5a786f35..184476dda 100644 --- a/tools/glib-ginterface-gen.py +++ b/tools/glib-ginterface-gen.py @@ -741,12 +741,14 @@ class Generator(object): self.b('') if self.allow_single_include: - self.b('#include <telepathy-glib/core-svc-interface.h>') self.b('#include <telepathy-glib/dbus.h>') self.b('#include <telepathy-glib/dbus-properties-mixin.h>') + self.b('#include <telepathy-glib/svc-interface.h>') self.b('#include <telepathy-glib/util.h>') + self.b('#include <telepathy-glib/value-array.h>') else: self.b('#include <telepathy-glib/telepathy-glib.h>') + self.b('#include <telepathy-glib/telepathy-glib-dbus.h>') self.b('') for header in self.headers: |