From: Abderrahim Kitouni Date: Fri, 30 Apr 2010 21:19:17 +0000 (+0100) Subject: girparser: Add an exception for Atk.Implementor X-Git-Tag: 0.9.3~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fkeep-around%2F6293d01d61dbe3741965b7d402573548cc35bf22;p=thirdparty%2Fvala.git girparser: Add an exception for Atk.Implementor Atk.Implementor has a GType name of AtkImplementorIface and this is what gobject-introspection uses. --- diff --git a/vala/valagirparser.vala b/vala/valagirparser.vala index d3f110d29..4c19d863c 100644 --- a/vala/valagirparser.vala +++ b/vala/valagirparser.vala @@ -491,6 +491,8 @@ public class Vala.GirParser : CodeVisitor { type_name = "unichar"; } else if (type_name == "GLib.Data") { type_name = "GLib.Datalist"; + } else if (type_name == "Atk.ImplementorIface") { + type_name = "Atk.Implementor"; } string[] type_components = type_name.split ("."); if (type_components[1] != null) {