diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-03-18 08:28:03 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-04-22 18:21:14 +0800 |
commit | 7761eeb4a0e307c14a96906cca1a94346f39c3a6 (patch) | |
tree | a0cf285000890c0633bdc1031bddcb73f9b952d5 /libempathy/empathy-contact.c | |
parent | 2914c6d76ae6a76e551ccaad01bc9edf2f375d08 (diff) | |
download | gsoc2013-empathy-7761eeb4a0e307c14a96906cca1a94346f39c3a6.tar gsoc2013-empathy-7761eeb4a0e307c14a96906cca1a94346f39c3a6.tar.gz gsoc2013-empathy-7761eeb4a0e307c14a96906cca1a94346f39c3a6.tar.bz2 gsoc2013-empathy-7761eeb4a0e307c14a96906cca1a94346f39c3a6.tar.lz gsoc2013-empathy-7761eeb4a0e307c14a96906cca1a94346f39c3a6.tar.xz gsoc2013-empathy-7761eeb4a0e307c14a96906cca1a94346f39c3a6.tar.zst gsoc2013-empathy-7761eeb4a0e307c14a96906cca1a94346f39c3a6.zip |
Use tp_connection_get_self_handle where needed
Diffstat (limited to 'libempathy/empathy-contact.c')
-rw-r--r-- | libempathy/empathy-contact.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 379109285..51259bddf 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -727,20 +727,6 @@ empathy_contact_is_user (EmpathyContact *contact) priv = GET_PRIV (contact); - /* FIXME: Uncomment this once we depend on tp-glib 0.7.26 - if (priv->tp_contact != NULL) - { - TpConnection *connection; - TpHandle handle; - TpHandle self_handle; - - connection = tp_contact_get_connection (priv->tp_contact); - self_handle = tp_connection_get_self_handle (connection); - handle = tp_contact_get_handle (priv->tp_contact); - return self_handle == handle; - } - */ - return priv->is_user; } |