From 6293d01d61dbe3741965b7d402573548cc35bf22 Mon Sep 17 00:00:00 2001 From: Abderrahim Kitouni Date: Fri, 30 Apr 2010 22:19:17 +0100 Subject: [PATCH] girparser: Add an exception for Atk.Implementor Atk.Implementor has a GType name of AtkImplementorIface and this is what gobject-introspection uses. --- vala/valagirparser.vala | 2 ++ 1 file changed, 2 insertions(+) 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) { -- 2.47.2