Add io_load_data() wrapper

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2014-10-10 01:38:25 +02:00
parent 61e2206dca
commit 8553a99161
4 changed files with 15 additions and 14 deletions

View File

@@ -686,6 +686,13 @@ void io_load_todo(struct item_filter *filter)
file_close(data_file, __FILE_POS__);
}
/* Load appointments and todo items */
void io_load_data(struct item_filter *filter)
{
io_load_app(filter);
io_load_todo(filter);
}
static void
load_keys_ht_getkey(struct ht_keybindings_s *data, const char **key,
int *len)