mucwin_room_info_error takes ProfMucWin

This commit is contained in:
James Booth
2015-11-01 23:30:44 +00:00
parent cb587b0772
commit 363fda82c1
4 changed files with 12 additions and 10 deletions

View File

@@ -143,13 +143,13 @@ mucwin_occupant_role_and_affiliation_change(ProfMucWin *mucwin, const char *cons
}
void
mucwin_room_info_error(const char *const roomjid, const char *const error)
mucwin_room_info_error(ProfMucWin *mucwin, const char *const error)
{
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
if (window) {
win_vprint(window, '!', 0, NULL, 0, 0, "", "Room info request failed: %s", error);
win_print(window, '-', 0, NULL, 0, 0, "", "");
}
assert(mucwin != NULL);
ProfWin *window = (ProfWin*)mucwin;
win_vprint(window, '!', 0, NULL, 0, 0, "", "Room info request failed: %s", error);
win_print(window, '-', 0, NULL, 0, 0, "", "");
}
void