diff options
author | Torsten Schönfeld <kaffeetisch@gmx.de> | 2011-08-13 12:45:14 +0200 |
---|---|---|
committer | Torsten Schönfeld <kaffeetisch@gmx.de> | 2011-08-13 15:00:00 +0200 |
commit | d84b7babf5adb637342492d13ab127d43317c8be (patch) | |
tree | 2bfaf7ffcf5207d9f101a1e56e0e6cac35c11711 /giscanner/girparser.py | |
parent | c47a10f867da52695a5c5b5bf7e0a22dddc0b085 (diff) | |
download | gobject-introspection-d84b7babf5adb637342492d13ab127d43317c8be.tar.gz |
scanner: add a moved_to property to backcompat functions
Use it to remove backcompat copies of functions that non introspectable
anyway.
https://bugzilla.gnome.org/show_bug.cgi?id=572408
Diffstat (limited to 'giscanner/girparser.py')
-rw-r--r-- | giscanner/girparser.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/giscanner/girparser.py b/giscanner/girparser.py index 51de1b15..41e2abda 100644 --- a/giscanner/girparser.py +++ b/giscanner/girparser.py @@ -303,6 +303,7 @@ class GIRParser(object): func.shadows = node.attrib.get('shadows', None) func.shadowed_by = node.attrib.get('shadowed-by', None) + func.moved_to = node.attrib.get('moved-to', None) parameters_node = node.find(_corens('parameters')) if (parameters_node is not None): |