From: Guillaume Desmottes Date: Sat, 12 Oct 2013 21:01:21 +0000 (-0400) Subject: debug: stop using tp_list_connection_names() X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=12c7e0dc5a4c83d619d9983bc32b8caebab520aa;hp=13a7933cbde1f932c18f3196b5f3c38f23fd8bb4 debug: stop using tp_list_connection_names() Make the code more symetric. https://bugzilla.gnome.org/show_bug.cgi?id=710017 --- diff --git a/src/empathy-debug-window.c b/src/empathy-debug-window.c index f813becc..98012e87 100644 --- a/src/empathy-debug-window.c +++ b/src/empathy-debug-window.c @@ -936,50 +936,6 @@ OUT: fill_service_chooser_data_free (data); } -static void -debug_window_list_connection_names_cb (const gchar * const *names, - gsize n, - const gchar * const *cms, - const gchar * const *protocols, - const GError *error, - gpointer user_data, - GObject *weak_object) -{ - EmpathyDebugWindow *self = user_data; - guint i; - TpDBusDaemon *dbus; - GError *error2 = NULL; - - if (error != NULL) - { - DEBUG ("list_connection_names failed: %s", error->message); - return; - } - - dbus = tp_dbus_daemon_dup (&error2); - - if (error2 != NULL) - { - DEBUG ("Failed to dup TpDBusDaemon."); - g_error_free (error2); - return; - } - - for (i = 0; cms[i] != NULL; i++) - { - FillServiceChooserData *data = fill_service_chooser_data_new ( - self, cms[i], SERVICE_TYPE_CM); - - tp_cli_dbus_daemon_call_get_name_owner (dbus, -1, - names[i], debug_window_get_name_owner_cb, - data, NULL, NULL); - - self->priv->services_detected ++; - } - - g_object_unref (dbus); -} - static void debug_window_name_owner_changed_cb (TpDBusDaemon *proxy, const gchar *arg0, @@ -1146,6 +1102,11 @@ list_names_cb (TpDBusDaemon *bus_daemon, add_service (self, names[i], names[i] + strlen (TP_CLIENT_BUS_NAME_BASE), SERVICE_TYPE_CLIENT); } + else if (g_str_has_prefix (names[i], TP_CM_BUS_NAME_BASE)) + { + add_service (self, names[i], + names[i] + strlen (TP_CM_BUS_NAME_BASE), SERVICE_TYPE_CM); + } } } @@ -1169,10 +1130,6 @@ debug_window_fill_service_chooser (EmpathyDebugWindow *self) self->priv->services_detected = 0; self->priv->name_owner_cb_count = 0; - /* Add CMs to list */ - tp_list_connection_names (self->priv->dbus, - debug_window_list_connection_names_cb, self, NULL, NULL); - /* add Mission Control */ active_buffer= new_list_store_for_service (); pause_buffer = new_list_store_for_service ();