aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-06-24 21:54:44 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-06-29 17:36:09 +0800
commit0d3a21856b23f8ba591e833f77ff3a5bcb465d24 (patch)
treec902d424dcddce60942ed06f79acd5df804d1e2e /src
parent4834af14fe305ac39331b1619e3cc4c3121a6c16 (diff)
downloadgsoc2013-empathy-0d3a21856b23f8ba591e833f77ff3a5bcb465d24.tar
gsoc2013-empathy-0d3a21856b23f8ba591e833f77ff3a5bcb465d24.tar.gz
gsoc2013-empathy-0d3a21856b23f8ba591e833f77ff3a5bcb465d24.tar.bz2
gsoc2013-empathy-0d3a21856b23f8ba591e833f77ff3a5bcb465d24.tar.lz
gsoc2013-empathy-0d3a21856b23f8ba591e833f77ff3a5bcb465d24.tar.xz
gsoc2013-empathy-0d3a21856b23f8ba591e833f77ff3a5bcb465d24.tar.zst
gsoc2013-empathy-0d3a21856b23f8ba591e833f77ff3a5bcb465d24.zip
add AV client to the debug window
Diffstat (limited to 'src')
-rw-r--r--src/empathy-debug-window.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/empathy-debug-window.c b/src/empathy-debug-window.c
index d14553681..69db2a6ce 100644
--- a/src/empathy-debug-window.c
+++ b/src/empathy-debug-window.c
@@ -853,6 +853,13 @@ debug_window_fill_cm_chooser (EmpathyDebugWindow *debug_window)
COL_CM_UNIQUE_NAME, "org.freedesktop.Telepathy.Client.Logger",
-1);
+ /* add Empathy audio/video client */
+ gtk_list_store_append (priv->cms, &iter);
+ gtk_list_store_set (priv->cms, &iter,
+ COL_CM_NAME, "Audio/Video",
+ COL_CM_UNIQUE_NAME, "org.freedesktop.Telepathy.Client.Empathy.AudioVideo",
+ -1);
+
priv->name_owner_changed_signal =
tp_cli_dbus_daemon_connect_to_name_owner_changed (priv->dbus,
debug_window_name_owner_changed_cb, debug_window, NULL, NULL, NULL);