diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:20 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:20 +0800 |
commit | ffb2b1feee9bb01c821f6de64d6011c1bc6e01b1 (patch) | |
tree | d61805f2c00b1e1537aea03ab0aa4a671d977f00 | |
parent | fad1acc68b019748f3ab2663d02f8fb4e80dc0f6 (diff) | |
download | gsoc2013-empathy-ffb2b1feee9bb01c821f6de64d6011c1bc6e01b1.tar gsoc2013-empathy-ffb2b1feee9bb01c821f6de64d6011c1bc6e01b1.tar.gz gsoc2013-empathy-ffb2b1feee9bb01c821f6de64d6011c1bc6e01b1.tar.bz2 gsoc2013-empathy-ffb2b1feee9bb01c821f6de64d6011c1bc6e01b1.tar.lz gsoc2013-empathy-ffb2b1feee9bb01c821f6de64d6011c1bc6e01b1.tar.xz gsoc2013-empathy-ffb2b1feee9bb01c821f6de64d6011c1bc6e01b1.tar.zst gsoc2013-empathy-ffb2b1feee9bb01c821f6de64d6011c1bc6e01b1.zip |
TpChannel is not a DBusGProxy
svn path=/trunk/; revision=914
-rw-r--r-- | libempathy/empathy-tp-call.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c index 82e305a58..473004c2d 100644 --- a/libempathy/empathy-tp-call.c +++ b/libempathy/empathy-tp-call.c @@ -19,7 +19,6 @@ */ #include <string.h> -#include <dbus/dbus-glib.h> #include <telepathy-glib/proxy-subclass.h> #include <telepathy-glib/dbus.h> @@ -761,7 +760,7 @@ empathy_tp_call_add_output_video (EmpathyTpCall *call, output_video_socket_id); emp_cli_stream_engine_call_set_output_window (priv->stream_engine, -1, - dbus_g_proxy_get_path (DBUS_G_PROXY (priv->channel)), + TP_PROXY (priv->channel)->object_path, priv->video->id, output_video_socket_id, tp_call_async_cb, "setting output window", NULL, @@ -780,7 +779,7 @@ empathy_tp_call_set_output_volume (EmpathyTpCall *call, empathy_debug (DEBUG_DOMAIN, "Setting output volume: %d", volume); emp_cli_stream_engine_call_set_output_volume (priv->stream_engine, -1, - dbus_g_proxy_get_path (DBUS_G_PROXY (priv->channel)), + TP_PROXY (priv->channel)->object_path, priv->audio->id, volume, tp_call_async_cb, "setting output volume", NULL, @@ -799,7 +798,7 @@ empathy_tp_call_mute_output (EmpathyTpCall *call, empathy_debug (DEBUG_DOMAIN, "Setting output mute: %d", is_muted); emp_cli_stream_engine_call_mute_output (priv->stream_engine, -1, - dbus_g_proxy_get_path (DBUS_G_PROXY (priv->channel)), + TP_PROXY (priv->channel)->object_path, priv->audio->id, is_muted, tp_call_async_cb, "muting output", NULL, @@ -818,7 +817,7 @@ empathy_tp_call_mute_input (EmpathyTpCall *call, empathy_debug (DEBUG_DOMAIN, "Setting input mute: %d", is_muted); emp_cli_stream_engine_call_mute_input (priv->stream_engine, -1, - dbus_g_proxy_get_path (DBUS_G_PROXY (priv->channel)), + TP_PROXY (priv->channel)->object_path, priv->audio->id, is_muted, tp_call_async_cb, "muting input", NULL, |