aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-11-22 00:20:32 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-11-22 00:20:32 +0800
commit9de705f0c9be2f3b92871f2a8f381e27846f3bdb (patch)
treebdf36edba8b634e7b779f53602c6e447c2952b20 /src/empathy.c
parente5bc1aeeb989f123c274a9becf3a9e2303c8a6b9 (diff)
downloadgsoc2013-empathy-9de705f0c9be2f3b92871f2a8f381e27846f3bdb.tar
gsoc2013-empathy-9de705f0c9be2f3b92871f2a8f381e27846f3bdb.tar.gz
gsoc2013-empathy-9de705f0c9be2f3b92871f2a8f381e27846f3bdb.tar.bz2
gsoc2013-empathy-9de705f0c9be2f3b92871f2a8f381e27846f3bdb.tar.lz
gsoc2013-empathy-9de705f0c9be2f3b92871f2a8f381e27846f3bdb.tar.xz
gsoc2013-empathy-9de705f0c9be2f3b92871f2a8f381e27846f3bdb.tar.zst
gsoc2013-empathy-9de705f0c9be2f3b92871f2a8f381e27846f3bdb.zip
fix FT client side code as the generated code changed
svn path=/trunk/; revision=1843
Diffstat (limited to 'src/empathy.c')
-rw-r--r--src/empathy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy.c b/src/empathy.c
index bc89d451e..a8ff7e2a6 100644
--- a/src/empathy.c
+++ b/src/empathy.c
@@ -102,7 +102,7 @@ file_channel_get_state_cb (TpProxy *proxy,
return;
}
- emp_cli_channel_type_file_connect_to_file_transfer_state_changed (
+ emp_cli_channel_type_file_transfer_connect_to_file_transfer_state_changed (
proxy, file_channel_state_changed_cb, NULL, NULL, NULL, NULL);
}
@@ -151,9 +151,9 @@ dispatch_channel_cb (EmpathyDispatcher *dispatcher,
else if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA)) {
empathy_call_window_new (channel);
}
- else if (!tp_strdiff (channel_type, EMP_IFACE_CHANNEL_TYPE_FILE)) {
+ else if (!tp_strdiff (channel_type, EMP_IFACE_CHANNEL_TYPE_FILE_TRANSFER)) {
tp_cli_dbus_properties_call_get (g_object_ref (channel), -1,
- EMP_IFACE_CHANNEL_TYPE_FILE,
+ EMP_IFACE_CHANNEL_TYPE_FILE_TRANSFER,
"State", file_channel_get_state_cb,
NULL, NULL, NULL);
}