diff options
Diffstat (limited to 'giscanner/girwriter.py')
-rw-r--r-- | giscanner/girwriter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/girwriter.py b/giscanner/girwriter.py index f637376f..4bef1eaf 100644 --- a/giscanner/girwriter.py +++ b/giscanner/girwriter.py @@ -276,7 +276,7 @@ class GIRWriter(XMLWriter): assert isinstance(ntype, ast.Type), ntype attrs = [] if ntype.ctype: - attrs.append(('c:type', ntype.ctype)) + attrs.append(('c:type', ntype.complete_ctype or ntype.ctype)) if isinstance(ntype, ast.Array): if ntype.array_type != ast.Array.C: attrs.insert(0, ('name', ntype.array_type)) |