summaryrefslogtreecommitdiff
path: root/telepathy-glib/base-connection.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-04-19 11:50:26 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-05-09 12:14:10 +0200
commit9f4260f19ef4344c75eeaefb799603a9dfc360fc (patch)
tree813e688a87231b2a71ef91a442faebb440002eeb /telepathy-glib/base-connection.c
parent55cb32b5bd54e8f2ca59f62c13b7ab9514ae10bd (diff)
downloadtelepathy-glib-9f4260f19ef4344c75eeaefb799603a9dfc360fc.tar.gz
base-connection: use _tp_asv_from_vardict()
Diffstat (limited to 'telepathy-glib/base-connection.c')
-rw-r--r--telepathy-glib/base-connection.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/telepathy-glib/base-connection.c b/telepathy-glib/base-connection.c
index 6b2f86976..7ba4be85a 100644
--- a/telepathy-glib/base-connection.c
+++ b/telepathy-glib/base-connection.c
@@ -242,6 +242,7 @@
#include <telepathy-glib/contacts-mixin.h>
#include <telepathy-glib/dbus-properties-mixin.h>
#include <telepathy-glib/dbus.h>
+#include <telepathy-glib/dbus-internal.h>
#include <telepathy-glib/exportable-channel.h>
#include <telepathy-glib/gtypes.h>
#include <telepathy-glib/interfaces.h>
@@ -2801,29 +2802,25 @@ tp_base_connection_disconnect_with_dbus_error_vardict (TpBaseConnection *self,
GVariant *details,
TpConnectionStatusReason reason)
{
- GValue value = G_VALUE_INIT;
+ GHashTable *hash;
g_return_if_fail (TP_IS_BASE_CONNECTION (self));
g_return_if_fail (tp_dbus_check_valid_interface_name (error_name, NULL));
- g_return_if_fail (g_variant_is_of_type (details, G_VARIANT_TYPE_VARDICT));
if (details == NULL)
{
- g_value_init (&value, TP_HASH_TYPE_STRING_VARIANT_MAP);
- g_value_take_boxed (&value, g_hash_table_new (g_str_hash, g_str_equal));
+ hash = g_hash_table_new (g_str_hash, g_str_equal);
}
else
{
- dbus_g_value_parse_g_variant (details, &value);
- g_assert (G_VALUE_TYPE (&value) == TP_HASH_TYPE_STRING_VARIANT_MAP);
+ hash = _tp_asv_from_vardict (details);
}
- tp_svc_connection_emit_connection_error (self, error_name,
- g_value_get_boxed (&value));
+ tp_svc_connection_emit_connection_error (self, error_name, hash);
tp_base_connection_change_status (self, TP_CONNECTION_STATUS_DISCONNECTED,
reason);
- g_value_unset (&value);
+ g_hash_table_unref (hash);
}
/**