aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-dispatcher.c
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-11-22 00:14:38 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-11-22 00:14:38 +0800
commit2725af48da259b59b0fcf48fb0f6fef02d882c29 (patch)
treeaabceecb57fcb3cc8f81b5946c7a59c10900232f /libempathy/empathy-dispatcher.c
parent4c6d587729719c7244a4d2510c3f41fddf508d11 (diff)
downloadgsoc2013-empathy-2725af48da259b59b0fcf48fb0f6fef02d882c29.tar
gsoc2013-empathy-2725af48da259b59b0fcf48fb0f6fef02d882c29.tar.gz
gsoc2013-empathy-2725af48da259b59b0fcf48fb0f6fef02d882c29.tar.bz2
gsoc2013-empathy-2725af48da259b59b0fcf48fb0f6fef02d882c29.tar.lz
gsoc2013-empathy-2725af48da259b59b0fcf48fb0f6fef02d882c29.tar.xz
gsoc2013-empathy-2725af48da259b59b0fcf48fb0f6fef02d882c29.tar.zst
gsoc2013-empathy-2725af48da259b59b0fcf48fb0f6fef02d882c29.zip
Removed file transfer handling code from empathy dispatcher. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@1750 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'libempathy/empathy-dispatcher.c')
-rw-r--r--libempathy/empathy-dispatcher.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c
index 2b965d417..5f26eeeed 100644
--- a/libempathy/empathy-dispatcher.c
+++ b/libempathy/empathy-dispatcher.c
@@ -371,15 +371,6 @@ dispatcher_tubes_handle_channel (EmpathyDispatcher *dispatcher,
}
static void
-dispatcher_file_handle_channel (EmpathyDispatcher *dispatcher,
- TpChannel *channel)
-{
- DEBUG ("New file channel");
-
- /* handle new file channel here */
-}
-
-static void
dispatcher_connection_invalidated_cb (TpConnection *connection,
guint domain,
gint code,
@@ -482,8 +473,6 @@ dispatcher_connection_new_channel_cb (TpConnection *connection,
if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TUBES)) {
dispatcher_tubes_handle_channel (dispatcher, channel);
- } else if (!tp_strdiff (channel_type, EMP_IFACE_CHANNEL_TYPE_FILE)) {
- dispatcher_file_handle_channel (dispatcher, channel);
}
if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TEXT) &&