aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-07-05 16:13:47 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-07-05 16:13:53 +0800
commitd88eaef098d3afc329266f25ce194c6dfebbc979 (patch)
tree54865b9faa1b2c0bed587964a70fe43043b43309
parent49aabeaba61750883864e95dc5f1bb254dbdb20d (diff)
downloadgsoc2013-empathy-d88eaef098d3afc329266f25ce194c6dfebbc979.tar
gsoc2013-empathy-d88eaef098d3afc329266f25ce194c6dfebbc979.tar.gz
gsoc2013-empathy-d88eaef098d3afc329266f25ce194c6dfebbc979.tar.bz2
gsoc2013-empathy-d88eaef098d3afc329266f25ce194c6dfebbc979.tar.lz
gsoc2013-empathy-d88eaef098d3afc329266f25ce194c6dfebbc979.tar.xz
gsoc2013-empathy-d88eaef098d3afc329266f25ce194c6dfebbc979.tar.zst
gsoc2013-empathy-d88eaef098d3afc329266f25ce194c6dfebbc979.zip
no need to specify each time of handle
-rw-r--r--data/Empathy.client9
-rw-r--r--src/empathy-chat-manager.c11
2 files changed, 0 insertions, 20 deletions
diff --git a/data/Empathy.client b/data/Empathy.client
index 3d0bd91fa..eda372b80 100644
--- a/data/Empathy.client
+++ b/data/Empathy.client
@@ -3,12 +3,3 @@ Interfaces=org.freedesktop.Telepathy.Client.Handler
[org.freedesktop.Telepathy.Client.Handler.HandlerChannelFilter 0]
org.freedesktop.Telepathy.Channel.ChannelType s=org.freedesktop.Telepathy.Channel.Type.Text
-org.freedesktop.Telepathy.Channel.TargetHandleType u=0
-
-[org.freedesktop.Telepathy.Client.Handler.HandlerChannelFilter 1]
-org.freedesktop.Telepathy.Channel.ChannelType s=org.freedesktop.Telepathy.Channel.Type.Text
-org.freedesktop.Telepathy.Channel.TargetHandleType u=1
-
-[org.freedesktop.Telepathy.Client.Handler.HandlerChannelFilter 2]
-org.freedesktop.Telepathy.Channel.ChannelType s=org.freedesktop.Telepathy.Channel.Type.Text
-org.freedesktop.Telepathy.Channel.TargetHandleType u=2
diff --git a/src/empathy-chat-manager.c b/src/empathy-chat-manager.c
index 2de258924..aceaa5e68 100644
--- a/src/empathy-chat-manager.c
+++ b/src/empathy-chat-manager.c
@@ -241,17 +241,6 @@ empathy_chat_manager_init (EmpathyChatManager *self)
tp_base_client_take_handler_filter (priv->handler, tp_asv_new (
TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
- TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_CONTACT,
- NULL));
-
- tp_base_client_take_handler_filter (priv->handler, tp_asv_new (
- TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
- TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_ROOM,
- NULL));
-
- tp_base_client_take_handler_filter (priv->handler, tp_asv_new (
- TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
- TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_NONE,
NULL));
if (!tp_base_client_register (priv->handler, &error))