summaryrefslogtreecommitdiff
path: root/giscanner/girparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner/girparser.py')
-rw-r--r--giscanner/girparser.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/giscanner/girparser.py b/giscanner/girparser.py
index bae09b9a..5944cc41 100644
--- a/giscanner/girparser.py
+++ b/giscanner/girparser.py
@@ -70,9 +70,6 @@ class GIRParser(object):
def get_namespace(self):
return self._namespace
- def get_c_includes(self):
- return self._c_includes
-
def get_c_prefix(self):
return self._c_prefix
@@ -137,6 +134,7 @@ class GIRParser(object):
if 'shared-library' in ns.attrib:
self._namespace.shared_libraries = ns.attrib['shared-library'].split(',')
self._namespace.includes = self._includes
+ self._namespace.c_includes = self._c_includes
parser_methods = {
_corens('alias'): self._parse_alias,