diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-10-03 23:58:39 +0000 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-10-06 12:37:06 +0200 |
commit | ba2aa5167b2157c99f3be4861c11717cd1b4cc6f (patch) | |
tree | c1801a746653bb7e04cf4603e321b0ba98e6de35 /src/calcurse.h | |
parent | 2d5ce0d95c50003074943eaa05b3c35255286279 (diff) | |
download | calcurse-ba2aa5167b2157c99f3be4861c11717cd1b4cc6f.zip |
Add count parameter to *_{in,de}crease()
This allows for moving more than one item up/down.
This currently isn't used anywhere but will be bound to a key with one
of the following patches.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r-- | src/calcurse.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index 37bf2c2..047a392 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -568,8 +568,8 @@ void apoint_free_bkp (void); void apoint_llist_init (void); void apoint_llist_free (void); void apoint_hilt_set (int); -void apoint_hilt_decrease (void); -void apoint_hilt_increase (void); +void apoint_hilt_decrease (int); +void apoint_hilt_increase (int); int apoint_hilt (void); struct apoint *apoint_new (char *, char *, long, long, char); void apoint_add (void); @@ -836,14 +836,14 @@ unsigned sigs_set_hdlr (int, void (*)(int)); /* todo.c */ extern llist_t todolist; void todo_hilt_set (int); -void todo_hilt_decrease (void); -void todo_hilt_increase (void); +void todo_hilt_decrease (int); +void todo_hilt_increase (int); int todo_hilt (void); int todo_nb (void); void todo_set_nb (int); void todo_set_first (int); -void todo_first_increase (void); -void todo_first_decrease (void); +void todo_first_increase (int); +void todo_first_decrease (int); int todo_hilt_pos (void); char *todo_saved_mesg (void); void todo_new_item (void); |