diff options
author | Frederic Culot <calcurse@culot.org> | 2007-03-10 15:54:24 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-03-10 15:54:24 +0000 |
commit | f82590c811bcff3f760063859d855865ec083a49 (patch) | |
tree | 832f413d9b32894ec68e01ef2b585b0a2d4e67e3 /src/todo.h | |
parent | b1d02bf4ff30bc33645ae5f436afcbec6640efda (diff) | |
download | calcurse-f82590c811bcff3f760063859d855865ec083a49.tar.gz calcurse-f82590c811bcff3f760063859d855865ec083a49.zip |
global variable 'colr' suppressed
Diffstat (limited to 'src/todo.h')
-rwxr-xr-x | src/todo.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,8 +1,8 @@ -/* $calcurse: todo.h,v 1.4 2006/11/02 13:43:56 culot Exp $ */ +/* $calcurse: todo.h,v 1.5 2007/03/10 15:54:59 culot Exp $ */ /* * Calcurse - text-based organizer - * Copyright (c) 2004-2006 Frederic Culot + * Copyright (c) 2004-2007 Frederic Culot * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -35,12 +35,12 @@ struct todo_s { extern struct todo_s *todolist; -int todo_new_item(int total, int colr); +int todo_new_item(int total); struct todo_s *todo_add(char *mesg, int id); void todo_delete_bynum(unsigned num); struct todo_s *todo_get_item(int item_number); int todo_get_position(struct todo_s *i); int todo_chg_priority(int action, int item_num); -void todo_edit_item(int item_num, int colr); +void todo_edit_item(int item_num); #endif /* CALCURSE_TODO_H */ |