summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2019-04-06 14:27:06 -0700
committerPhilip Chimento <philip.chimento@gmail.com>2019-04-07 21:47:53 -0700
commit4319e4f32d8a0d1d4991d902c67d549465f07641 (patch)
tree80de4113008581c9821a4f173544bd043e5cc6ee
parent551a3f77816b89b540cdca6836c2822ac4740adb (diff)
downloadgobject-introspection-4319e4f32d8a0d1d4991d902c67d549465f07641.tar.gz
giscanner: Allow fields which are callbacks
This is apparently used in Gee-0.8 and Folks-0.6.
-rw-r--r--giscanner/girparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/girparser.py b/giscanner/girparser.py
index 5fa9f510..9ea408b4 100644
--- a/giscanner/girparser.py
+++ b/giscanner/girparser.py
@@ -542,7 +542,7 @@ class GIRParser(object):
def _parse_field(self, node, parent):
type_node = None
anonymous_node = None
- if node.tag in map(_corens, ('record', 'union')):
+ if node.tag in map(_corens, ('callback', 'record', 'union')):
anonymous_elt = node
else:
anonymous_elt = self._find_first_child(node, _corens('callback'))