]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
girparser: StringBuilder is GLib.String not GObject.String
authorAbderrahim Kitouni <a.kitouni@gmail.com>
Fri, 9 Apr 2010 16:52:32 +0000 (17:52 +0100)
committerJürg Billeter <j@bitron.ch>
Tue, 29 Jun 2010 17:37:46 +0000 (19:37 +0200)
vala/valagirparser.vala

index 0dfbcc10c8dfc87363585b5d785796fc7e0372f7..d3f110d298d695eef5f35fe3b75cf12875b16920 100644 (file)
@@ -483,7 +483,7 @@ public class Vala.GirParser : CodeVisitor {
                                type_name = "int64";
                        } else if (type_name == "GType") {
                                type_name = "GLib.Type";
-                       } else if (type_name == "GObject.String") {
+                       } else if (type_name == "GLib.String") {
                                type_name = "GLib.StringBuilder";
                        } else if (type_name == "GObject.Class") {
                                type_name = "GLib.ObjectClass";