aboutsummaryrefslogtreecommitdiffstats
path: root/src/todo.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2011-12-09 01:14:05 +0100
committerLukas Fleischer <calcurse@cryptocrack.de>2011-12-09 01:14:05 +0100
commita01cbe0c36e27920efe57ac7f3323602f0695afb (patch)
treef31cbee8490015b5aa868933c662110ad167fce3 /src/todo.c
parentdfe835190fa48013d6a5fa6cf687a36276a4bd0a (diff)
downloadcalcurse-a01cbe0c36e27920efe57ac7f3323602f0695afb.tar.gz
calcurse-a01cbe0c36e27920efe57ac7f3323602f0695afb.zip
src/todo.c: Remove several unneeded variables
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/todo.c')
-rw-r--r--src/todo.c33
1 files changed, 14 insertions, 19 deletions
diff --git a/src/todo.c b/src/todo.c
index 4418710..38ffca3 100644
--- a/src/todo.c
+++ b/src/todo.c
@@ -248,27 +248,19 @@ todo_delete (void)
_("This item has a note attached to it. "
"Delete (t)odo or just its (n)ote ?");
char *erase_choice = _("[t/n] ");
- unsigned go_for_todo_del = 0;
int answer, has_note;
if (conf.confirm_delete)
{
status_mesg (del_todo_str, choices);
answer = wgetch (win[STA].p);
- if ((answer == 'y') && (todos > 0))
- {
- go_for_todo_del = 1;
- }
- else
+ if ((answer != 'y') || (todos <= 0))
{
wins_erase_status_bar ();
return;
}
}
- else if (todos > 0)
- go_for_todo_del = 1;
-
- if (go_for_todo_del == 0)
+ else if (todos <= 0)
{
wins_erase_status_bar ();
return;
@@ -335,7 +327,6 @@ todo_chg_priority (int action)
char backup_mesg[BUFSIZ];
int backup_id;
char backup_note[MAX_NOTESIZ + 1];
- int do_chg = 1;
backup = todo_get_item (hilt);
strncpy (backup_mesg, backup->mesg, strlen (backup->mesg) + 1);
@@ -347,21 +338,25 @@ todo_chg_priority (int action)
switch (action)
{
case KEY_RAISE_PRIORITY:
- (backup_id > 1) ? backup_id-- : do_chg--;
+ if (backup_id > 1)
+ backup_id--;
+ else
+ return;
break;
case KEY_LOWER_PRIORITY:
- (backup_id > 0 && backup_id < 9) ? backup_id++ : do_chg--;
+ if (backup_id > 0 && backup_id < 9)
+ backup_id++;
+ else
+ return;
break;
default:
EXIT (_("no such action"));
/* NOTREACHED */
}
- if (do_chg)
- {
- todo_delete_bynum (hilt - 1);
- backup = todo_add (backup_mesg, backup_id, backup_note);
- hilt = todo_get_position (backup);
- }
+
+ todo_delete_bynum (hilt - 1);
+ backup = todo_add (backup_mesg, backup_id, backup_note);
+ hilt = todo_get_position (backup);
}
/* Edit the description of an already existing todo item. */