diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2008-11-22 00:19:37 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-22 00:19:37 +0800 |
commit | 93ea221b297a0e46380029035b32551af0b36202 (patch) | |
tree | 73c52aecee75f4a215792bf28d648cfca8e016da /libempathy | |
parent | 2197c25693bdfd71502c5d4f9b8d5853a78927b3 (diff) | |
download | gsoc2013-empathy-93ea221b297a0e46380029035b32551af0b36202.tar gsoc2013-empathy-93ea221b297a0e46380029035b32551af0b36202.tar.gz gsoc2013-empathy-93ea221b297a0e46380029035b32551af0b36202.tar.bz2 gsoc2013-empathy-93ea221b297a0e46380029035b32551af0b36202.tar.lz gsoc2013-empathy-93ea221b297a0e46380029035b32551af0b36202.tar.xz gsoc2013-empathy-93ea221b297a0e46380029035b32551af0b36202.tar.zst gsoc2013-empathy-93ea221b297a0e46380029035b32551af0b36202.zip |
Renamed is_salut to contact_is_salut. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=1829
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-contact.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 7c8539fba..8768c4046 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -561,7 +561,7 @@ empathy_contact_get_handle (EmpathyContact *contact) } static gboolean -is_salut (EmpathyContact *contact) +contact_is_salut (EmpathyContact *contact) { McAccount *account; McProfile *profile; @@ -593,7 +593,7 @@ empathy_contact_set_handle (EmpathyContact *contact, /* FIXME salut does not yet support the Capabilities interface, so for * now we use this hack. */ - if (is_salut (contact)) + if (contact_is_salut (contact)) { EmpathyCapabilities caps; |