summaryrefslogtreecommitdiff
path: root/giscanner/gdumpparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner/gdumpparser.py')
-rw-r--r--giscanner/gdumpparser.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/giscanner/gdumpparser.py b/giscanner/gdumpparser.py
index 87621bc9..c2509377 100644
--- a/giscanner/gdumpparser.py
+++ b/giscanner/gdumpparser.py
@@ -397,6 +397,11 @@ different --identifier-prefix.""" % (xmlnode.attrib['name'], self._namespace.ide
self._introspect_boxed_gstreamer_workaround(xmlnode)
return
+ # Work around CairoRectangleInt vs. GdkRectangle issue
+ # https://bugzilla.gnome.org/show_bug.cgi?id=655423
+ if type_name == 'CairoRectangleInt':
+ return
+
try:
name = self._transformer.strip_identifier(type_name)
except TransformerException, e: