Added message in console on /roster remove

This commit is contained in:
James Booth
2013-06-02 00:24:22 +01:00
parent 65c09db19e
commit 0e5d277c14
5 changed files with 17 additions and 0 deletions

View File

@@ -449,6 +449,12 @@ ui_roster_add(const char * const barejid, const char * const name)
}
}
void
ui_roster_remove(const char * const barejid)
{
cons_show("Roster item removed: %s", barejid);
}
void
ui_contact_online(const char * const barejid, const char * const resource,
const char * const show, const char * const status, GDateTime *last_activity)

View File

@@ -113,6 +113,7 @@ void ui_room_nick_change(const char * const room, const char * const nick);
void ui_room_member_presence(const char * const room,
const char * const nick, const char * const show, const char * const status);
void ui_roster_add(const char * const barejid, const char * const name);
void ui_roster_remove(const char * const barejid);
// contact status functions
void ui_status_room(const char * const contact);