Show messages on /group add and /group remove

closes #189
closes #190
This commit is contained in:
James Booth
2013-06-23 17:38:30 +01:00
parent dace47e5d3
commit d5e9ca649d
9 changed files with 130 additions and 8 deletions

View File

@@ -164,6 +164,22 @@ prof_handle_not_in_group(const char * const contact,
ui_current_page_off();
}
void
prof_handle_group_add(const char * const contact,
const char * const group)
{
ui_group_added(contact, group);
ui_current_page_off();
}
void
prof_handle_group_remove(const char * const contact,
const char * const group)
{
ui_group_removed(contact, group);
ui_current_page_off();
}
void
prof_handle_error_message(const char *from, const char *err_msg)
{