aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-contact-list.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-01-02 06:10:22 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-01-02 06:10:22 +0800
commit5ba8e4047cf01d47781db85b2c400e67b84026a9 (patch)
tree164870ce992ada4185388a2a4f70fb68996f6649 /libempathy/empathy-contact-list.h
parent6fd6f3b1081a5b72054ef135346da0d5eb979590 (diff)
downloadgsoc2013-empathy-5ba8e4047cf01d47781db85b2c400e67b84026a9.tar
gsoc2013-empathy-5ba8e4047cf01d47781db85b2c400e67b84026a9.tar.gz
gsoc2013-empathy-5ba8e4047cf01d47781db85b2c400e67b84026a9.tar.bz2
gsoc2013-empathy-5ba8e4047cf01d47781db85b2c400e67b84026a9.tar.lz
gsoc2013-empathy-5ba8e4047cf01d47781db85b2c400e67b84026a9.tar.xz
gsoc2013-empathy-5ba8e4047cf01d47781db85b2c400e67b84026a9.tar.zst
gsoc2013-empathy-5ba8e4047cf01d47781db85b2c400e67b84026a9.zip
Add a remove option to delete a contact group. Fixes bug #459520 (David Turner).
svn path=/trunk/; revision=528
Diffstat (limited to 'libempathy/empathy-contact-list.h')
-rw-r--r--libempathy/empathy-contact-list.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libempathy/empathy-contact-list.h b/libempathy/empathy-contact-list.h
index 96ab79e98..35575e112 100644
--- a/libempathy/empathy-contact-list.h
+++ b/libempathy/empathy-contact-list.h
@@ -61,6 +61,8 @@ struct _EmpathyContactListIface {
void (*rename_group) (EmpathyContactList *list,
const gchar *old_group,
const gchar *new_group);
+ void (*remove_group) (EmpathyContactList *list,
+ const gchar *group);
};
GType empathy_contact_list_get_type (void) G_GNUC_CONST;
@@ -84,6 +86,8 @@ void empathy_contact_list_remove_from_group (EmpathyContactList *list,
void empathy_contact_list_rename_group (EmpathyContactList *list,
const gchar *old_group,
const gchar *new_group);
+void empathy_contact_list_remove_group (EmpathyContactList *list,
+ const gchar *group);
G_END_DECLS