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 = { _BASIC_TYPES = {
"bool": BoolType, "bool": BoolType,
"gboolean": BoolType,
"string": StringType, "string": StringType,
"gchararray": StringType,
"int": IntType, "int": IntType,
"gint": IntType, "uint": UIntType,
"gint64": IntType,
"guint": UIntType,
"guint64": UIntType,
"gfloat": FloatType,
"gdouble": FloatType,
"float": FloatType, "float": FloatType,
"double": FloatType, "double": FloatType,
"utf8": StringType,
"gtype": TypeType,
"type": TypeType, "type": TypeType,
} }