diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-02-11 13:17:48 +0800 |
---|---|---|
committer | Chandni Verma <chandniverma2112@gmail.com> | 2011-03-08 12:04:57 +0800 |
commit | 95bbacd1eda4500ef9cef0f998ebb485861a3a3d (patch) | |
tree | 4c70d900678f5474ae99104bae7e45c1f8d72fd6 /libempathy/empathy-individual-manager.c | |
parent | 1e15d1b253163c98064997aabe6b127acbecc64b (diff) | |
download | gsoc2013-empathy-95bbacd1eda4500ef9cef0f998ebb485861a3a3d.tar gsoc2013-empathy-95bbacd1eda4500ef9cef0f998ebb485861a3a3d.tar.gz gsoc2013-empathy-95bbacd1eda4500ef9cef0f998ebb485861a3a3d.tar.bz2 gsoc2013-empathy-95bbacd1eda4500ef9cef0f998ebb485861a3a3d.tar.lz gsoc2013-empathy-95bbacd1eda4500ef9cef0f998ebb485861a3a3d.tar.xz gsoc2013-empathy-95bbacd1eda4500ef9cef0f998ebb485861a3a3d.tar.zst gsoc2013-empathy-95bbacd1eda4500ef9cef0f998ebb485861a3a3d.zip |
Add confirmation dialog to Remove
Also includes the future Report Abusive check box, so that all the strings
are in place now.
Diffstat (limited to 'libempathy/empathy-individual-manager.c')
-rw-r--r-- | libempathy/empathy-individual-manager.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy/empathy-individual-manager.c b/libempathy/empathy-individual-manager.c index 01eb51951..fd74e4bbe 100644 --- a/libempathy/empathy-individual-manager.c +++ b/libempathy/empathy-individual-manager.c @@ -628,6 +628,8 @@ empathy_individual_manager_get_flags_for_connection ( flags |= EMPATHY_INDIVIDUAL_MANAGER_CAN_GROUP; if (list_flags & EMPATHY_CONTACT_LIST_CAN_BLOCK) flags |= EMPATHY_INDIVIDUAL_MANAGER_CAN_BLOCK; + if (list_flags & EMPATHY_CONTACT_LIST_CAN_REPORT_ABUSIVE) + flags |= EMPATHY_INDIVIDUAL_MANAGER_CAN_REPORT_ABUSIVE; return flags; } |