diff options
author | Nicola Fontana <ntd@entidi.it> | 2014-12-11 15:27:35 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-05-09 16:17:38 +0100 |
commit | deb946cd01c0d3451c7fe2fddfc068916c6922cd (patch) | |
tree | 21077f90914e31c133d045d82ebecb488a36da8a | |
parent | b7a86130c4a7946e28575ab944f10504729ed0ad (diff) | |
download | gobject-introspection-deb946cd01c0d3451c7fe2fddfc068916c6922cd.tar.gz |
Correct wrong GLib type name for cairo_content_t
Enumerations in cairo-gobject do not follow the GLib naming conventions
(i.e., CamelCase); they have been registered using their original C
names instead, e.g. "cairo_content_t" instead of "CairoContent".
https://bugzilla.gnome.org/show_bug.cgi?id=743364
-rw-r--r-- | gir/cairo-1.0.gir.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gir/cairo-1.0.gir.in b/gir/cairo-1.0.gir.in index d7e6c168..f49419f3 100644 --- a/gir/cairo-1.0.gir.in +++ b/gir/cairo-1.0.gir.in @@ -22,7 +22,7 @@ glib:type-name="CairoRegion" glib:get-type="cairo_gobject_region_get_type"/> <enumeration name="Content" c:type="cairo_content_t" - glib:type-name="CairoContent" + glib:type-name="cairo_content_t" glib:get-type="cairo_gobject_content_get_type"> <member name="COLOR" value="4096" |