diff options
author | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-05-08 21:47:08 +0800 |
---|---|---|
committer | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-08-20 18:03:05 +0800 |
commit | dc1515185c316d2e333ff38e879993a0af70accb (patch) | |
tree | c2cec82c3a13340b09e7e0cfbb05ae214f03466d /libempathy-gtk | |
parent | 4e0f97a1942d1ae0b4b3846d43e3769fdb076b44 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-individual-menu.c | 2 |
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)); |