From: Jürg Billeter Date: Mon, 28 Jun 2010 22:08:22 +0000 (+0200) Subject: D-Bus: Fix error domain registration with GDBus X-Git-Tag: 0.9.3~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba6f0a1d87a96be48dfa96ba316ca750da1e38dc;p=thirdparty%2Fvala.git D-Bus: Fix error domain registration with GDBus --- diff --git a/codegen/valagdbusmodule.vala b/codegen/valagdbusmodule.vala index 1e32ea7ea..82fc076ed 100644 --- a/codegen/valagdbusmodule.vala +++ b/codegen/valagdbusmodule.vala @@ -68,7 +68,7 @@ public class Vala.GDBusModule : GVariantModule { var error_entry = new CCodeInitializerList (); error_entry.append (new CCodeIdentifier (ecode.get_cname ())); - error_entry.append (new CCodeConstant ("\"%s\"".printf (ecode_dbus_name))); + error_entry.append (new CCodeConstant ("\"%s.%s\"".printf (edomain_dbus_name, ecode_dbus_name))); error_entries.append (error_entry); }