diff options
author | Frederic Culot <calcurse@culot.org> | 2007-07-28 13:11:42 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-07-28 13:11:42 +0000 |
commit | 4b987f70ac463121f9791eb3493952a77aba495f (patch) | |
tree | 2754295b8dd40b6818ddd80d97a327329de854c0 /src/calcurse.c | |
parent | fdc325acd8549acf0fb52c84b8074aef0c2c38c7 (diff) | |
download | calcurse-4b987f70ac463121f9791eb3493952a77aba495f.tar.gz calcurse-4b987f70ac463121f9791eb3493952a77aba495f.zip |
unuseful headers removed and some functions became static
Diffstat (limited to 'src/calcurse.c')
-rwxr-xr-x | src/calcurse.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/calcurse.c b/src/calcurse.c index 6375395..2b55538 100755 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -1,4 +1,4 @@ -/* $calcurse: calcurse.c,v 1.50 2007/07/26 20:35:58 culot Exp $ */ +/* $calcurse: calcurse.c,v 1.51 2007/07/28 13:11:42 culot Exp $ */ /* * Calcurse - text-based organizer @@ -160,11 +160,11 @@ main(int argc, char **argv) * configuration (the display is then updated), and then * the todo list, appointments and events. */ - no_data_file = check_data_files(); + no_data_file = io_check_data_files(); custom_load_conf(&conf, background); erase_status_bar(); - nb_tod = load_todo(); - load_app(); + nb_tod = io_load_todo(); + io_load_app(); if (notify_bar()) { notify_start_main_thread(); notify_check_next_app(); @@ -175,7 +175,7 @@ main(int argc, char **argv) &win[TODO], &win[CALENDAR], &win[NOTIFY]); wins_update(&conf, &win[STATUS], &win[APPOINTMENT], &win[TODO], hilt_app, hilt_tod, nb_tod, first_todo_onscreen, &saved_t_mesg); - startup_screen(conf.skip_system_dialogs, no_data_file); + io_startup_screen(conf.skip_system_dialogs, no_data_file); inday = *day_process_storage(0, day_changed, &inday); wins_slctd_set(CALENDAR); wins_update(&conf, &win[STATUS], &win[APPOINTMENT], &win[TODO], |