calendar.c: Rename to "ui-calendar.c"

This unit belongs to the presentation layer -- rename the file
accordingly.

Also, rename calendar_*() to ui_calendar_*().

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2013-02-14 10:52:44 +01:00
parent 971df8d215
commit 806673dd9b
12 changed files with 126 additions and 126 deletions

View File

@@ -161,7 +161,7 @@ void vars_init(void)
wins_set_layout(1);
calendar_set_first_day_of_week(MONDAY);
ui_calendar_set_first_day_of_week(MONDAY);
/* Pad structure to scroll text inside the appointment panel */
apad.length = 1;
@@ -171,5 +171,5 @@ void vars_init(void)
custom_init_attr();
/* Start at the current date */
calendar_init_slctd_day();
ui_calendar_init_slctd_day();
}