todo.c: Split out UI-related functions

* Move UI-related functions to "ui-todo.c".
* Rename UI-related functions to ui_todo_*().

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2013-02-14 11:03:10 +01:00
parent 601709b173
commit 971df8d215
6 changed files with 242 additions and 242 deletions

View File

@@ -497,7 +497,7 @@ void wins_update_panels(int flags)
if (flags & FLAG_APP)
ui_day_update_panel(slctd_win);
if (flags & FLAG_TOD)
todo_update_panel(slctd_win);
ui_todo_update_panel(slctd_win);
if (flags & FLAG_CAL)
calendar_update_panel(&win[CAL]);
}