aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-05-08 21:47:08 +0800
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 18:03:05 +0800
commitdc1515185c316d2e333ff38e879993a0af70accb (patch)
treec2cec82c3a13340b09e7e0cfbb05ae214f03466d
parent4e0f97a1942d1ae0b4b3846d43e3769fdb076b44 (diff)
downloadgsoc2013-empathy-dc1515185c316d2e333ff38e879993a0af70accb.tar
gsoc2013-empathy-dc1515185c316d2e333ff38e879993a0af70accb.tar.gz
gsoc2013-empathy-dc1515185c316d2e333ff38e879993a0af70accb.tar.bz2
gsoc2013-empathy-dc1515185c316d2e333ff38e879993a0af70accb.tar.lz
gsoc2013-empathy-dc1515185c316d2e333ff38e879993a0af70accb.tar.xz
gsoc2013-empathy-dc1515185c316d2e333ff38e879993a0af70accb.tar.zst
gsoc2013-empathy-dc1515185c316d2e333ff38e879993a0af70accb.zip
individual-menu: use TpAccount's functions for schemes instead of Empathy's
https://bugzilla.gnome.org/show_bug.cgi?id=699492
-rw-r--r--libempathy-gtk/empathy-individual-menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-menu.c b/libempathy-gtk/empathy-individual-menu.c
index b27bfde46..51b954819 100644
--- a/libempathy-gtk/empathy-individual-menu.c
+++ b/libempathy-gtk/empathy-individual-menu.c
@@ -296,7 +296,7 @@ find_phone_accounts (void)
TP_CONNECTION_STATUS_CONNECTED)
continue;
- if (!empathy_account_has_uri_scheme_tel (account))
+ if (!tp_account_associated_with_uri_scheme (account, "tel"))
continue;
found = g_list_prepend (found, g_object_ref (account));