diff options
author | Dafydd Harries <dafydd.harries@collabora.co.uk> | 2006-11-09 11:35:10 +0000 |
---|---|---|
committer | Dafydd Harries <dafydd.harries@collabora.co.uk> | 2006-11-09 11:35:10 +0000 |
commit | b0726128e52b854090f88005b576585a8b3c9a6c (patch) | |
tree | c27d77f41aa51201f4d97a8998aa782c2365eb3c /generate | |
parent | 3a3204c18fa2ea5c8560ff08bf687b659f208b47 (diff) |
code regeneration
Diffstat (limited to 'generate')
-rw-r--r-- | generate/src/gabble-connection.c | 14 | ||||
-rw-r--r-- | generate/src/gabble-connection.h | 5 | ||||
-rw-r--r-- | generate/xml-modified/gabble-connection.xml | 1 |
3 files changed, 8 insertions, 12 deletions
diff --git a/generate/src/gabble-connection.c b/generate/src/gabble-connection.c index de91a5ca8..8cb7e1ecc 100644 --- a/generate/src/gabble-connection.c +++ b/generate/src/gabble-connection.c @@ -594,19 +594,15 @@ gabble_connection_remove_status (GabbleConnection *self, * Implements D-Bus method RequestAliases * on interface org.freedesktop.Telepathy.Connection.Interface.Aliasing * - * @error: Used to return a pointer to a GError detailing any error - * that occurred, D-Bus will throw the error only if this - * function returns FALSE. - * - * Returns: TRUE if successful, FALSE if an error was thrown. + * @context: The D-Bus invocation context to use to return values + * or throw an error. */ -gboolean +void gabble_connection_request_aliases (GabbleConnection *self, const GArray *contacts, - gchar ***ret, - GError **error) + DBusGMethodInvocation *context) { - return TRUE; + return; } diff --git a/generate/src/gabble-connection.h b/generate/src/gabble-connection.h index 841421da4..68bff932d 100644 --- a/generate/src/gabble-connection.h +++ b/generate/src/gabble-connection.h @@ -160,11 +160,10 @@ gabble_connection_remove_status (GabbleConnection *self, const gchar *status, GError **error); -gboolean +void gabble_connection_request_aliases (GabbleConnection *self, const GArray *contacts, - gchar ***ret, - GError **error); + DBusGMethodInvocation *context); void gabble_connection_request_channel (GabbleConnection *self, diff --git a/generate/xml-modified/gabble-connection.xml b/generate/xml-modified/gabble-connection.xml index f8eb517a6..ded459f83 100644 --- a/generate/xml-modified/gabble-connection.xml +++ b/generate/xml-modified/gabble-connection.xml @@ -68,6 +68,7 @@ <arg direction="out" type="u"/> </method> <method name="RequestAliases"> + <annotation name="org.freedesktop.DBus.GLib.Async" value=""/> <arg direction="in" name="contacts" type="au"/> <arg direction="out" type="as"/> </method> |