cl_ev_send_muc_msg takes ProfMucWin as arg

This commit is contained in:
James Booth
2015-05-04 01:06:12 +01:00
parent ef54ff305e
commit b1dd1e2726
3 changed files with 5 additions and 5 deletions

View File

@@ -122,7 +122,7 @@ cmd_execute_default(const char * inp)
case WIN_MUC:
{
ProfMucWin *mucwin = wins_get_current_muc();
cl_ev_send_muc_msg(mucwin->roomjid, inp);
cl_ev_send_muc_msg(mucwin, inp);
break;
}
default:
@@ -3155,7 +3155,7 @@ cmd_tiny(gchar **args, struct cmd_help_t help)
case WIN_MUC:
{
ProfMucWin *mucwin = wins_get_current_muc();
cl_ev_send_muc_msg(mucwin->roomjid, tiny);
cl_ev_send_muc_msg(mucwin, tiny);
break;
}
default: