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

@@ -12,10 +12,10 @@ void create_title_bar(void)
title_bar = newwin(1, cols, 0, 0);
wbkgd(title_bar, COLOR_PAIR(3));
win_title_bar_show(title);
title_bar_show(title);
}
void win_title_bar_show(char *title)
void title_bar_show(char *title)
{
wclear(title_bar);
mvwprintw(title_bar, 0, 0, " %s", title);