Renamed window_show_time -> window_print_time

This commit is contained in:
James Booth
2013-04-21 02:10:13 +01:00
parent e151ce707d
commit a3b861a711
4 changed files with 78 additions and 78 deletions

View File

@@ -66,7 +66,7 @@ window_free(ProfWin* window)
}
void
window_show_time(ProfWin* window, char show_char)
window_print_time(ProfWin* window, char show_char)
{
GDateTime *time = g_date_time_new_now_local();
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
@@ -122,7 +122,7 @@ window_show_contact(ProfWin *window, PContact contact)
const char *status = p_contact_status(contact);
GDateTime *last_activity = p_contact_last_activity(contact);
window_show_time(window, '-');
window_print_time(window, '-');
window_presence_colour_on(window, presence);
wprintw(window->win, "%s", barejid);