summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2014-04-03 11:25:41 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2014-04-03 17:39:51 +0100
commit80b10090ce2027570d4ea4818bccb07ad4573d7e (patch)
treebbdabb4090ec323ce27c60b049d9da08344a43c7
parent07fd04b53d6e83911ac0ef883e7f13abbfc23f5c (diff)
Update codegen: include telepathy-glib-dbus.h in service-side code
-rw-r--r--tools/glib-ginterface-gen.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/glib-ginterface-gen.py b/tools/glib-ginterface-gen.py
index d5a786f..184476d 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: