diff options
author | Frederic Culot <calcurse@culot.org> | 2009-01-01 17:50:41 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2009-01-01 17:50:41 +0000 |
commit | cac30a7e1469a8f061f64712dbea100a012dd788 (patch) | |
tree | 0e38d019b5071df73555b541ec2ce8e84fa2b9c5 /src/day.h | |
parent | 8fdd1510c68644184c3df9ba002092a41364b482 (diff) | |
download | calcurse-cac30a7e1469a8f061f64712dbea100a012dd788.zip |
cut/paste feature aded
fixed a 2-years old bug that made repeated items with exceptions to load
uncorrectly in some cases (thanks Jan for reporting it)
Diffstat (limited to 'src/day.h')
-rwxr-xr-x | src/day.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: day.h,v 1.20 2008/12/28 13:13:59 culot Exp $ */ +/* $calcurse: day.h,v 1.21 2009/01/01 17:50:41 culot Exp $ */ /* * Calcurse - text-based organizer @@ -76,6 +76,8 @@ void day_popup_item (void); int day_check_if_item (date_t); void day_edit_item (conf_t *); int day_erase_item (long, int, erase_flag_e); +int day_cut_item (long, int); +int day_paste_item (long); struct day_item_s *day_get_item (int); int day_item_nb (long, int, int); void day_edit_note (char *); |