Renamed ui_room_hide_occupants -> mucwin_hide_occupants
This commit is contained in:
@@ -3180,7 +3180,7 @@ cmd_occupants(ProfWin *window, const char *const command, gchar **args)
|
||||
mucwin->showjid = FALSE;
|
||||
mucwin_update_occupants(mucwin->roomjid);
|
||||
} else {
|
||||
ui_room_hide_occupants(mucwin->roomjid);
|
||||
mucwin_hide_occupants(mucwin->roomjid);
|
||||
}
|
||||
} else {
|
||||
cons_bad_cmd_usage(command);
|
||||
|
||||
@@ -647,7 +647,7 @@ ui_hide_all_room_rosters(void)
|
||||
if (window->type == WIN_MUC && win_has_active_subwin(window)) {
|
||||
ProfMucWin *mucwin = (ProfMucWin*)window;
|
||||
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
||||
ui_room_hide_occupants(mucwin->roomjid);
|
||||
mucwin_hide_occupants(mucwin->roomjid);
|
||||
}
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
|
||||
@@ -787,7 +787,7 @@ mucwin_show_occupants(const char *const roomjid)
|
||||
}
|
||||
|
||||
void
|
||||
ui_room_hide_occupants(const char *const roomjid)
|
||||
mucwin_hide_occupants(const char *const roomjid)
|
||||
{
|
||||
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
||||
if (window && win_has_active_subwin(window)) {
|
||||
|
||||
@@ -135,7 +135,7 @@ void mucwin_occupant_presence(const char *const roomjid, const char *const nick,
|
||||
const char *const status);
|
||||
void mucwin_update_occupants(const char *const roomjid);
|
||||
void mucwin_show_occupants(const char *const roomjid);
|
||||
void ui_room_hide_occupants(const char *const roomjid);
|
||||
void mucwin_hide_occupants(const char *const roomjid);
|
||||
void ui_show_roster(void);
|
||||
void ui_hide_roster(void);
|
||||
void ui_roster_add(const char *const barejid, const char *const name);
|
||||
|
||||
Reference in New Issue
Block a user