mucwin_role_change takes ProfMucWin

This commit is contained in:
James Booth
2015-11-01 22:42:31 +00:00
parent 2be3b7d9a2
commit e547ae0bcc
4 changed files with 12 additions and 6 deletions

View File

@@ -32,6 +32,8 @@
*
*/
#include <assert.h>
#include "ui/win_types.h"
#include "window_list.h"
#include "log.h"
@@ -39,10 +41,12 @@
#include "ui/window.h"
void
mucwin_role_change(const char *const roomjid, const char *const role, const char *const actor,
mucwin_role_change(ProfMucWin *mucwin, const char *const role, const char *const actor,
const char *const reason)
{
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
assert(mucwin != NULL);
ProfWin *window = (ProfWin*)mucwin;
win_vprint(window, '!', 0, NULL, NO_EOL, THEME_ROOMINFO, "", "Your role has been changed to: %s", role);
if (actor) {
win_vprint(window, '!', 0, NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", by: %s", actor);

View File

@@ -161,8 +161,7 @@ void chatwin_otr_smp_event(ProfChatWin *chatwin, prof_otr_smp_event_t event, voi
#endif
// MUC window
void mucwin_role_change(const char *const roomjid, const char *const role, const char *const actor,
const char *const reason);
void mucwin_role_change(ProfMucWin *mucwin, const char *const role, const char *const actor, const char *const reason);
void mucwin_affiliation_change(const char *const roomjid, const char *const affiliation, const char *const actor,
const char *const reason);
void mucwin_role_and_affiliation_change(const char *const roomjid, const char *const role,