From 42c486d30d8e6f82d27651e19029e332af86cba3 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 12 Jun 2012 22:42:28 +0200 Subject: Rename displacement enumeration elements * Rename "LEFT" to "DAY_PREV", "RIGHT" to "DAY_NEXT", "UP" to "WEEK_PREV" and "DOWN" to "WEEK_NEXT" to reflect the semantics of these operations. Remove the unneeded "MOVES" element. * Reorder code to improve consistency. Signed-off-by: Lukas Fleischer --- src/wins.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/wins.c') diff --git a/src/wins.c b/src/wins.c index b45ad6c..7d2f8a2 100644 --- a/src/wins.c +++ b/src/wins.c @@ -597,10 +597,10 @@ void wins_status_bar(void) struct binding draw = { _("Redraw"), KEY_GENERIC_REDRAW }; struct binding appt = { _("Add Appt"), KEY_GENERIC_ADD_APPT }; struct binding todo = { _("Add Todo"), KEY_GENERIC_ADD_TODO }; - struct binding gnday = { _("+1 Day"), KEY_GENERIC_NEXT_DAY }; struct binding gpday = { _("-1 Day"), KEY_GENERIC_PREV_DAY }; - struct binding gnweek = { _("+1 Week"), KEY_GENERIC_NEXT_WEEK }; + struct binding gnday = { _("+1 Day"), KEY_GENERIC_NEXT_DAY }; struct binding gpweek = { _("-1 Week"), KEY_GENERIC_PREV_WEEK }; + struct binding gnweek = { _("+1 Week"), KEY_GENERIC_NEXT_WEEK }; struct binding today = { _("Today"), KEY_GENERIC_GOTO_TODAY }; struct binding nview = { _("Nxt View"), KEY_GENERIC_SCROLL_DOWN }; struct binding pview = { _("Prv View"), KEY_GENERIC_SCROLL_UP }; @@ -625,20 +625,20 @@ void wins_status_bar(void) struct binding *bindings_cal[] = { &help, &quit, &save, &chgvu, &nview, &pview, &up, &down, &left, &right, - &togo, &import, &export, &weekb, &weeke, &appt, &todo, &gnday, &gpday, - &gnweek, &gpweek, &draw, &today, &conf + &togo, &import, &export, &weekb, &weeke, &appt, &todo, &gpday, &gnday, + &gpweek, &gnweek, &draw, &today, &conf }; struct binding *bindings_apoint[] = { &help, &quit, &save, &chgvu, &import, &export, &add, &del, &edit, &view, - &pipe, &draw, &rept, &flag, &enote, &vnote, &up, &down, &gnday, &gpday, - &gnweek, &gpweek, &togo, &today, &conf, &appt, &todo, &cut, &paste + &pipe, &draw, &rept, &flag, &enote, &vnote, &up, &down, &gpday, &gnday, + &gpweek, &gnweek, &togo, &today, &conf, &appt, &todo, &cut, &paste }; struct binding *bindings_todo[] = { &help, &quit, &save, &chgvu, &import, &export, &add, &del, &edit, &view, - &pipe, &flag, &rprio, &lprio, &enote, &vnote, &up, &down, &gnday, &gpday, - &gnweek, &gpweek, &togo, &today, &conf, &appt, &todo, &draw + &pipe, &flag, &rprio, &lprio, &enote, &vnote, &up, &down, &gpday, &gnday, + &gpweek, &gnweek, &togo, &today, &conf, &appt, &todo, &draw }; enum win active_panel = wins_slctd(); -- cgit v1.2.3-54-g00ecf