[vala] girparser: Add an exception for Atk.Implementor
- From: Jürg Billeter <juergbi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala] girparser: Add an exception for Atk.Implementor
- Date: Tue, 29 Jun 2010 17:44:49 +0000 (UTC)
commit 6293d01d61dbe3741965b7d402573548cc35bf22
Author: Abderrahim Kitouni <a kitouni gmail com>
Date: Fri Apr 30 22:19:17 2010 +0100
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 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/vala/valagirparser.vala b/vala/valagirparser.vala
index d3f110d..4c19d86 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) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]