diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-02-14 11:03:10 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-02-14 11:08:03 +0100 |
commit | 971df8d215a0e10c87f67f3505345e15efcffb8e (patch) | |
tree | 23bcd368447b6f9580223acd563311f1393b4f77 /src/wins.c | |
parent | 601709b173d45394ded5027712959efce2fe862b (diff) | |
download | calcurse-971df8d215a0e10c87f67f3505345e15efcffb8e.zip |
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>
Diffstat (limited to 'src/wins.c')
-rw-r--r-- | src/wins.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]); } |