Show message when removing contact from group when not in group

This commit is contained in:
James Booth
2013-06-23 16:35:13 +01:00
parent 265fff8f40
commit dace47e5d3
5 changed files with 27 additions and 6 deletions

View File

@@ -149,10 +149,18 @@ prof_handle_duck_result(const char * const result)
}
void
prof_handle_already_in_group(const char * const barejid,
prof_handle_already_in_group(const char * const contact,
const char * const group)
{
ui_contact_already_in_group(barejid, group);
ui_contact_already_in_group(contact, group);
ui_current_page_off();
}
void
prof_handle_not_in_group(const char * const contact,
const char * const group)
{
ui_contact_not_in_group(contact, group);
ui_current_page_off();
}