aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-contact-list.c
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2011-02-14 09:00:56 +0800
committerChandni Verma <chandniverma2112@gmail.com>2011-03-11 13:10:17 +0800
commit103b4d5da19bf7ebf648658b8ff0ccab88aa24bd (patch)
tree28dd101a3ea24b525fa3e4d492803a6d80986940 /libempathy/empathy-contact-list.c
parent0a9fd8a0a7517f099ca1b908679ab7935513cd9a (diff)
downloadgsoc2013-empathy-103b4d5da19bf7ebf648658b8ff0ccab88aa24bd.tar
gsoc2013-empathy-103b4d5da19bf7ebf648658b8ff0ccab88aa24bd.tar.gz
gsoc2013-empathy-103b4d5da19bf7ebf648658b8ff0ccab88aa24bd.tar.bz2
gsoc2013-empathy-103b4d5da19bf7ebf648658b8ff0ccab88aa24bd.tar.lz
gsoc2013-empathy-103b4d5da19bf7ebf648658b8ff0ccab88aa24bd.tar.xz
gsoc2013-empathy-103b4d5da19bf7ebf648658b8ff0ccab88aa24bd.tar.zst
gsoc2013-empathy-103b4d5da19bf7ebf648658b8ff0ccab88aa24bd.zip
Hook up abusive argument into TpContactList backend
Diffstat (limited to 'libempathy/empathy-contact-list.c')
-rw-r--r--libempathy/empathy-contact-list.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libempathy/empathy-contact-list.c b/libempathy/empathy-contact-list.c
index d8af8938f..d28866735 100644
--- a/libempathy/empathy-contact-list.c
+++ b/libempathy/empathy-contact-list.c
@@ -282,12 +282,13 @@ empathy_contact_list_remove_from_favourites (EmpathyContactList *list,
void
empathy_contact_list_set_blocked (EmpathyContactList *list,
EmpathyContact *contact,
- gboolean blocked)
+ gboolean blocked,
+ gboolean abusive)
{
EmpathyContactListIface *iface = EMPATHY_CONTACT_LIST_GET_IFACE (list);
if (iface->set_blocked != NULL)
- iface->set_blocked (list, contact, blocked);
+ iface->set_blocked (list, contact, blocked, abusive);
}
gboolean