summaryrefslogtreecommitdiff
path: root/giscanner/gdumpparser.py
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-08-24 17:31:22 -0400
committerColin Walters <walters@verbum.org>2010-08-31 16:05:57 -0400
commit9c0ed701aa1961efe931fbded530cacffe036491 (patch)
tree63f743b4a9a53f04339ab6b463b90ce739a95ba2 /giscanner/gdumpparser.py
parentaf7be95a17bc119932e3728e799131650788b499 (diff)
downloadgobject-introspection-9c0ed701aa1961efe931fbded530cacffe036491.tar.gz
major: Fix parent for GInitiallyUnowned
Diffstat (limited to 'giscanner/gdumpparser.py')
-rw-r--r--giscanner/gdumpparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/gdumpparser.py b/giscanner/gdumpparser.py
index ce270720..30f9d6a9 100644
--- a/giscanner/gdumpparser.py
+++ b/giscanner/gdumpparser.py
@@ -168,7 +168,7 @@ blob containing data gleaned from GObject's primitive introspection."""
parent_gitype = None
symbol = 'intern'
elif type_name == 'GInitiallyUnowned':
- parent_gitype = ast.Type(target_giname='GLib.Object')
+ parent_gitype = ast.Type(target_giname='GObject.Object')
symbol = 'g_initially_unowned_get_type'
else:
assert False