diff options
author | Davyd Madeley <davyd@madeley.id.au> | 2009-07-15 17:58:17 +0800 |
---|---|---|
committer | Davyd Madeley <davyd@madeley.id.au> | 2009-07-15 18:12:16 +0800 |
commit | a55d556e43624ced7d3c55863078669cfeebde84 (patch) | |
tree | bb8bfad42ba1d00cf80109955007642226ddfb40 /libempathy | |
parent | ce74b001af76af82c3bc448784ce7826b99d378f (diff) | |
download | gsoc2013-empathy-a55d556e43624ced7d3c55863078669cfeebde84.tar gsoc2013-empathy-a55d556e43624ced7d3c55863078669cfeebde84.tar.gz gsoc2013-empathy-a55d556e43624ced7d3c55863078669cfeebde84.tar.bz2 gsoc2013-empathy-a55d556e43624ced7d3c55863078669cfeebde84.tar.lz gsoc2013-empathy-a55d556e43624ced7d3c55863078669cfeebde84.tar.xz gsoc2013-empathy-a55d556e43624ced7d3c55863078669cfeebde84.tar.zst gsoc2013-empathy-a55d556e43624ced7d3c55863078669cfeebde84.zip |
Small style fixes
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tp-contact-list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c index 5e52fe351..c1c46b3ca 100644 --- a/libempathy/empathy-tp-contact-list.c +++ b/libempathy/empathy-tp-contact-list.c @@ -559,7 +559,7 @@ tp_contact_list_get_requestablechannelclasses_cb (TpProxy *connection, handle_type = tp_asv_get_uint32 (props, TP_IFACE_CHANNEL ".TargetHandleType", NULL); - if (!strcmp (channel_type, TP_IFACE_CHANNEL_TYPE_CONTACT_LIST) && + if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_CONTACT_LIST) && handle_type == TP_HANDLE_TYPE_GROUP) { DEBUG ("Got channel class for a contact group"); priv->flags |= EMPATHY_CONTACT_LIST_CAN_GROUP; @@ -782,7 +782,7 @@ tp_contact_list_constructed (GObject *list) priv->factory = empathy_tp_contact_factory_dup_singleton (priv->connection); - /* call GetAliasFlags() */ + /* call GetAliasFlags */ if (tp_proxy_has_interface_by_id (priv->connection, TP_IFACE_QUARK_CONNECTION_INTERFACE_ALIASING)) { tp_cli_connection_interface_aliasing_call_get_alias_flags ( |