Renamed title bar functions

This commit is contained in:
James Booth
2012-02-12 22:38:27 +00:00
parent e112ef5aac
commit 02f5df5b20
3 changed files with 22 additions and 20 deletions

View File

@@ -54,9 +54,9 @@ void win_switch_to(int i)
_curr_win = i;
if (i == 0) {
win_title_bar_show("Console, type /help for help information");
title_bar_show("Console, type /help for help information");
} else {
win_title_bar_show(_wins[i].from);
title_bar_show(_wins[i].from);
}
}
@@ -73,7 +73,7 @@ void win_close_win(void)
touchwin(_wins[0].win);
wrefresh(_wins[0].win);
win_title_bar_show("Console, type /help for help information");
title_bar_show("Console, type /help for help information");
}
int win_in_chat(void)