diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-07-16 17:10:57 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-07-16 17:10:57 +0800 |
commit | 0751b2d498a4fedde128f9a55bcb89d859794ee3 (patch) | |
tree | 4d003bd63f6f395b5d439553cf9ab8b0ded4b8f7 /src/empathy-sanity-cleaning.c | |
parent | 25c022091cf9527a80db041e554e8ec35b131bf2 (diff) | |
download | gsoc2013-empathy-0751b2d498a4fedde128f9a55bcb89d859794ee3.tar gsoc2013-empathy-0751b2d498a4fedde128f9a55bcb89d859794ee3.tar.gz gsoc2013-empathy-0751b2d498a4fedde128f9a55bcb89d859794ee3.tar.bz2 gsoc2013-empathy-0751b2d498a4fedde128f9a55bcb89d859794ee3.tar.lz gsoc2013-empathy-0751b2d498a4fedde128f9a55bcb89d859794ee3.tar.xz gsoc2013-empathy-0751b2d498a4fedde128f9a55bcb89d859794ee3.tar.zst gsoc2013-empathy-0751b2d498a4fedde128f9a55bcb89d859794ee3.zip |
Use new tp_account_* getters
Diffstat (limited to 'src/empathy-sanity-cleaning.c')
-rw-r--r-- | src/empathy-sanity-cleaning.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-sanity-cleaning.c b/src/empathy-sanity-cleaning.c index 5b366ddf0..7437be47d 100644 --- a/src/empathy-sanity-cleaning.c +++ b/src/empathy-sanity-cleaning.c @@ -75,7 +75,7 @@ fix_xmpp_account_priority (TpAccountManager *am) GHashTable *params; gint priority; - if (tp_strdiff (tp_account_get_protocol (account), "jabber")) + if (tp_strdiff (tp_account_get_protocol_name (account), "jabber")) continue; params = (GHashTable *) tp_account_get_parameters (account); |