From 971df8d215a0e10c87f67f3505345e15efcffb8e Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 14 Feb 2013 11:03:10 +0100 Subject: 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 --- src/io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/io.c') diff --git a/src/io.c b/src/io.c index 8923ba5..144ef67 100644 --- a/src/io.c +++ b/src/io.c @@ -640,7 +640,7 @@ void io_load_todo(void) ++nb_tod; } file_close(data_file, __FILE_POS__); - todo_set_nb(nb_tod); + ui_todo_set_nb(nb_tod); } static void @@ -1022,7 +1022,7 @@ void io_import_data(enum import_type type, const char *stream_name) snprintf(stats_str[3], BUFSIZ, _("%d skipped"), stats.skipped); /* Update the number of todo items. */ - todo_set_nb(todo_nb() + stats.todos); + ui_todo_set_nb(ui_todo_nb() + stats.todos); if (ui_mode == UI_CURSES && conf.system_dialogs) { char read[BUFSIZ], stat[BUFSIZ]; -- cgit v1.2.3-54-g00ecf