From: Rico Tzschichholz Date: Wed, 27 Feb 2019 14:45:13 +0000 (+0100) Subject: girwriter: Always use get_gir_name() for TypeSymbols X-Git-Tag: 0.42.6~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9228e22e885c79aac95b37feb5c19084aa628c16;p=thirdparty%2Fvala.git girwriter: Always use get_gir_name() for TypeSymbols --- diff --git a/codegen/valagirwriter.vala b/codegen/valagirwriter.vala index 98758e2fe..b471a22d2 100644 --- a/codegen/valagirwriter.vala +++ b/codegen/valagirwriter.vala @@ -370,7 +370,7 @@ public class Vala.GIRWriter : CodeVisitor { write_indent (); buffer.append_printf ("\n"); indent++; @@ -510,7 +510,7 @@ public class Vala.GIRWriter : CodeVisitor { return; } - string gtype_struct_name = iface.name + "Iface"; + string gtype_struct_name = get_gir_name (iface) + "Iface"; write_indent (); buffer.append_printf ("\n"); indent++;