diff options
author | Frederic Culot <calcurse@culot.org> | 2008-12-07 09:20:38 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-12-07 09:20:38 +0000 |
commit | 639058740a44c6380258e0152f9916af1e53bb27 (patch) | |
tree | 4a011f1eef9f925740c9d0e701258e580ce65b9f /src/apoint.c | |
parent | cf5617e3378fc4c6089195c83fac0f8a7acb84fe (diff) | |
download | calcurse-639058740a44c6380258e0152f9916af1e53bb27.tar.gz calcurse-639058740a44c6380258e0152f9916af1e53bb27.zip |
Checks added while loading key bindings configuration.
Diffstat (limited to 'src/apoint.c')
-rwxr-xr-x | src/apoint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/apoint.c b/src/apoint.c index 3f846ff..6686572 100755 --- a/src/apoint.c +++ b/src/apoint.c @@ -1,4 +1,4 @@ -/* $calcurse: apoint.c,v 1.24 2008/11/16 17:42:53 culot Exp $ */ +/* $calcurse: apoint.c,v 1.25 2008/12/07 09:20:38 culot Exp $ */ /* * Calcurse - text-based organizer @@ -151,7 +151,7 @@ apoint_add (void) else if (check_time (item_time) != 1) { status_mesg (format_message_1, enter_str); - keys_getch (win[STA].p); + (void)wgetch (win[STA].p); } else sscanf (item_time, "%u:%u", &heures, &minutes); @@ -175,7 +175,7 @@ apoint_add (void) else if (check_time (item_time) == 0) { status_mesg (format_message_2, enter_str); - keys_getch (win[STA].p); + (void)wgetch (win[STA].p); } else { @@ -242,7 +242,7 @@ apoint_delete (conf_t *conf, unsigned *nb_events, unsigned *nb_apoints) if (conf->confirm_delete) { status_mesg (del_app_str, choices); - answer = keys_getch (win[STA].p); + answer = wgetch (win[STA].p); if ((answer == 'y') && (nb_items != 0)) go_for_deletion = true; else |