From 857837c539058df84e398d482b24de3b71e2469a Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Wed, 21 Apr 2010 10:37:27 +0200 Subject: [PATCH] use TP_PROP_* constants --- libempathy/empathy-contact.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index e8b38846..1d544d8e 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -1418,12 +1418,12 @@ tp_caps_to_capabilities (TpCapabilities *caps) &allowed_prop); handle_type = tp_asv_get_uint32 (fixed_prop, - TP_IFACE_CHANNEL ".TargetHandleType", NULL); + TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, NULL); if (handle_type != TP_HANDLE_TYPE_CONTACT) continue; chan_type = tp_asv_get_string (fixed_prop, - TP_IFACE_CHANNEL ".ChannelType"); + TP_PROP_CHANNEL_CHANNEL_TYPE); if (!tp_strdiff (chan_type, TP_IFACE_CHANNEL_TYPE_FILE_TRANSFER)) { @@ -1438,14 +1438,15 @@ tp_caps_to_capabilities (TpCapabilities *caps) { guint j; - for (j = 0; allowed_prop[j] != NULL; j++) { - if (!tp_strdiff (allowed_prop[j], - TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA ".InitialAudio")) - capabilities |= EMPATHY_CAPABILITIES_AUDIO; - else if (!tp_strdiff (allowed_prop[j], - TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA ".InitialVideo")) - capabilities |= EMPATHY_CAPABILITIES_VIDEO; - } + for (j = 0; allowed_prop[j] != NULL; j++) + { + if (!tp_strdiff (allowed_prop[j], + TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_AUDIO)) + capabilities |= EMPATHY_CAPABILITIES_AUDIO; + else if (!tp_strdiff (allowed_prop[j], + TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_VIDEO)) + capabilities |= EMPATHY_CAPABILITIES_VIDEO; + } } } -- 2.39.2