types: Remove g* type names

They aren't used in GIR parsing anymore since we use typelibs, and
blueprint files should use the non-prefixed names.
This commit is contained in:
James Westman 2023-03-11 21:36:27 -06:00
parent 0f5f08ade9
commit fad3b35531

View file

@ -208,20 +208,11 @@ class TypeType(BasicType):
_BASIC_TYPES = {
"bool": BoolType,
"gboolean": BoolType,
"string": StringType,
"gchararray": StringType,
"int": IntType,
"gint": IntType,
"gint64": IntType,
"guint": UIntType,
"guint64": UIntType,
"gfloat": FloatType,
"gdouble": FloatType,
"uint": UIntType,
"float": FloatType,
"double": FloatType,
"utf8": StringType,
"gtype": TypeType,
"type": TypeType,
}