1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00

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

@ -592,7 +592,10 @@ sv_ev_muc_self_online(const char *const room, const char *const nick, gboolean c
// role changed
} else if (g_strcmp0(role, old_role) != 0) {
mucwin_role_change(room, role, actor, reason);
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin) {
mucwin_role_change(mucwin, role, actor, reason);
}
// affiliation changed
} else if (g_strcmp0(affiliation, old_affiliation) != 0) {

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,

View File

@ -191,7 +191,7 @@ void ui_outgoing_private_msg(ProfPrivateWin *privwin, const char * const message
void ui_room_join(const char * const roomjid, gboolean focus) {}
void ui_switch_to_room(const char * const roomjid) {}
void mucwin_role_change(const char * const roomjid, const char * const role, const char * const actor,
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) {}