diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-08 21:30:57 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-15 16:28:40 +0800 |
commit | 2f6934c6f206596cfffe0497adad83a231cc24d7 (patch) | |
tree | 13c5784889f41bfbed42c2efe7a7a563dc2964ba /libempathy/empathy-contact-list.c | |
parent | 5056bda77944ccee7a6bc4040a462590c16982b3 (diff) | |
download | gsoc2013-empathy-2f6934c6f206596cfffe0497adad83a231cc24d7.tar.gz gsoc2013-empathy-2f6934c6f206596cfffe0497adad83a231cc24d7.tar.zst gsoc2013-empathy-2f6934c6f206596cfffe0497adad83a231cc24d7.zip |
coding style fixes
Diffstat (limited to 'libempathy/empathy-contact-list.c')
-rw-r--r-- | libempathy/empathy-contact-list.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libempathy/empathy-contact-list.c b/libempathy/empathy-contact-list.c index 7bd00474f..0a3d361d4 100644 --- a/libempathy/empathy-contact-list.c +++ b/libempathy/empathy-contact-list.c @@ -266,11 +266,11 @@ empathy_contact_list_is_favourite (EmpathyContactList *list, #if HAVE_FAVOURITE_CONTACTS if (EMPATHY_CONTACT_LIST_GET_IFACE (list)->is_favourite) { return EMPATHY_CONTACT_LIST_GET_IFACE (list)->is_favourite ( - list, contact); + list, contact); } #endif /* HAVE_FAVOURITE_CONTACTS */ - return FALSE; + return FALSE; } void @@ -279,8 +279,8 @@ empathy_contact_list_add_to_favourites (EmpathyContactList *list, { #if HAVE_FAVOURITE_CONTACTS if (EMPATHY_CONTACT_LIST_GET_IFACE (list)->add_favourite) { - EMPATHY_CONTACT_LIST_GET_IFACE (list)->add_favourite (list, - contact); + EMPATHY_CONTACT_LIST_GET_IFACE (list)->add_favourite (list, + contact); } #endif /* HAVE_FAVOURITE_CONTACTS */ } @@ -291,8 +291,8 @@ empathy_contact_list_remove_from_favourites (EmpathyContactList *list, { #if HAVE_FAVOURITE_CONTACTS if (EMPATHY_CONTACT_LIST_GET_IFACE (list)->remove_favourite) { - EMPATHY_CONTACT_LIST_GET_IFACE (list)->remove_favourite (list, - contact); + EMPATHY_CONTACT_LIST_GET_IFACE (list)->remove_favourite (list, + contact); } #endif /* HAVE_FAVOURITE_CONTACTS */ } |