From 443b7649d5a1daec09f1ed34907fa81fe0000459 Mon Sep 17 00:00:00 2001 From: Danny Kukawka Date: Mon, 25 Aug 2008 21:02:07 +0200 Subject: [PATCH 20/48] fix DBus introspection for org.freedesktop.Hal.Manager Fixed DBus introspection for org.freedesktop.Hal.Manager. Some methodes used as argument type object path (ao/oa/o) but the code used DBUS_TYPE_STRING_AS_STRING or DBUS_TYPE_STRING. Changed the introspection code to use string as type to prevent API breakages, since everyone use currently what the code says. --- hald/hald_dbus.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hald/hald_dbus.c b/hald/hald_dbus.c index 51dd7ae..697fb75 100644 --- a/hald/hald_dbus.c +++ b/hald/hald_dbus.c @@ -4445,22 +4445,22 @@ do_introspect (DBusConnection *connection, xml = g_string_append (xml, " \n" " \n" - " \n" + " \n" " \n" " \n" - " \n" + " \n" " \n" " \n" " \n" - " \n" + " \n" " \n" " \n" - " \n" + " \n" " \n" " \n" " \n" " \n" - " \n" + " \n" " \n" " \n" " \n" -- 1.6.1.2