summaryrefslogtreecommitdiff
path: root/src/connection-aliasing.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/connection-aliasing.c')
-rw-r--r--src/connection-aliasing.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/connection-aliasing.c b/src/connection-aliasing.c
index f46467e..e350cc2 100644
--- a/src/connection-aliasing.c
+++ b/src/connection-aliasing.c
@@ -146,7 +146,7 @@ haze_connection_request_aliases (TpSvcConnectionInterfaceAliasing1 *self,
if (!tp_handles_are_valid (contact_handles, contacts, FALSE, &error))
{
- dbus_g_method_return_error (context, error);
+ g_dbus_method_invocation_return_gerror (context, error);
g_error_free (error);
return;
}
@@ -280,7 +280,7 @@ haze_connection_set_aliases (TpSvcConnectionInterfaceAliasing1 *self,
{
g_set_error (&error, TP_ERROR, TP_ERROR_NOT_AVAILABLE,
"You can't set aliases on this protocol");
- dbus_g_method_return_error (context, error);
+ g_dbus_method_invocation_return_gerror (context, error);
g_error_free (error);
return;
}
@@ -289,7 +289,7 @@ haze_connection_set_aliases (TpSvcConnectionInterfaceAliasing1 *self,
if (error)
{
- dbus_g_method_return_error (context, error);
+ g_dbus_method_invocation_return_gerror (context, error);
g_error_free (error);
}
else