summaryrefslogtreecommitdiff
path: root/giscanner/transformer.py
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2020-04-28 11:18:18 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2020-04-28 11:19:29 +0200
commitbb364bd25d50215b0c40d98ba5ecf2aa779e53a2 (patch)
tree1618dbab70c70a86d6bf85e63252759fbd662732 /giscanner/transformer.py
parent770d81f2a32a7bbaa64cd923a69838574e2f0454 (diff)
downloadgobject-introspection-bb364bd25d50215b0c40d98ba5ecf2aa779e53a2.tar.gz
Revert "Add support for element-type to GListModel"
Breaks vapigen and changes GListModel definition in Gio-2.0.gir This reverts commit a9f45431684e6be3623e272e54d481e4c5d9423d.
Diffstat (limited to 'giscanner/transformer.py')
-rw-r--r--giscanner/transformer.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/giscanner/transformer.py b/giscanner/transformer.py
index 7f230a20..bcabdedc 100644
--- a/giscanner/transformer.py
+++ b/giscanner/transformer.py
@@ -698,9 +698,6 @@ raise ValueError."""
elif base in ('GHashTable', 'GLib.HashTable', 'GObject.HashTable'):
return ast.Map(ast.TYPE_ANY, ast.TYPE_ANY, ctype=ctype, is_const=is_const,
complete_ctype=complete_ctype)
- elif base in ('GListModel', 'Gio.ListModel'):
- return ast.List('Gio.ListModel', ast.TYPE_ANY, ctype=ctype,
- is_const=is_const, complete_ctype=complete_ctype)
return None
def create_type_from_ctype_string(self, ctype, is_const=False,