mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
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:
parent
0f5f08ade9
commit
fad3b35531
1 changed files with 1 additions and 10 deletions
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue