aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-tp-chat.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-09-29 20:04:15 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2011-02-14 09:06:32 +0800
commit461d2796da725e10c02dfd7767ac3ebd38261dfc (patch)
treeb4b0cab59219f12ce32d949cbf3a523752e09b31 /libempathy/empathy-tp-chat.c
parent17e69195176edfa854e1d62cc3e6bd322128ce37 (diff)
downloadgsoc2013-empathy-461d2796da725e10c02dfd7767ac3ebd38261dfc.tar
gsoc2013-empathy-461d2796da725e10c02dfd7767ac3ebd38261dfc.tar.gz
gsoc2013-empathy-461d2796da725e10c02dfd7767ac3ebd38261dfc.tar.bz2
gsoc2013-empathy-461d2796da725e10c02dfd7767ac3ebd38261dfc.tar.lz
gsoc2013-empathy-461d2796da725e10c02dfd7767ac3ebd38261dfc.tar.xz
gsoc2013-empathy-461d2796da725e10c02dfd7767ac3ebd38261dfc.tar.zst
gsoc2013-empathy-461d2796da725e10c02dfd7767ac3ebd38261dfc.zip
use tp-glib API for Conference (#630709)
Diffstat (limited to 'libempathy/empathy-tp-chat.c')
-rw-r--r--libempathy/empathy-tp-chat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c
index 375683b62..ae9a532d0 100644
--- a/libempathy/empathy-tp-chat.c
+++ b/libempathy/empathy-tp-chat.c
@@ -159,9 +159,9 @@ tp_chat_add (EmpathyContactList *list,
TP_IFACE_CHANNEL_TYPE_TEXT,
TP_IFACE_CHANNEL ".TargetHandleType", G_TYPE_UINT,
TP_HANDLE_TYPE_NONE,
- EMP_IFACE_CHANNEL_INTERFACE_CONFERENCE ".InitialChannels",
+ TP_IFACE_CHANNEL_INTERFACE_CONFERENCE ".InitialChannels",
TP_ARRAY_TYPE_OBJECT_PATH_LIST, &channels,
- EMP_IFACE_CHANNEL_INTERFACE_CONFERENCE ".InitialInviteeIDs",
+ TP_IFACE_CHANNEL_INTERFACE_CONFERENCE ".InitialInviteeIDs",
G_TYPE_STRV, invitees,
/* FIXME: InvitationMessage ? */
NULL);
@@ -907,7 +907,7 @@ tp_chat_update_remote_contact (EmpathyTpChat *chat)
* have the group interface. If it has the conference interface, then
* it is indeed a MUC. */
if (tp_proxy_has_interface_by_id (priv->channel,
- EMP_IFACE_QUARK_CHANNEL_INTERFACE_CONFERENCE)) {
+ TP_IFACE_QUARK_CHANNEL_INTERFACE_CONFERENCE)) {
return;
}
@@ -1320,7 +1320,7 @@ tp_chat_constructor (GType type,
const char **oprops = g_value_get_boxed (
g_value_array_get_nth (array, 1));
- if (tp_strv_contains (oprops, EMP_IFACE_CHANNEL_INTERFACE_CONFERENCE ".InitialChannels")) {
+ if (tp_strv_contains (oprops, TP_IFACE_CHANNEL_INTERFACE_CONFERENCE ".InitialChannels")) {
priv->can_upgrade_to_muc = TRUE;
break;
}