diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-02-14 11:09:53 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-02-14 11:10:38 +0100 |
commit | 8de7399360e64d292198251da8fc8ae2ffbb7a7d (patch) | |
tree | bd88a49f210f755f1a7309fbfd96deefbb433b0b /src | |
parent | 806673dd9b256e879d1483255886a8881d1d8115 (diff) | |
download | calcurse-8de7399360e64d292198251da8fc8ae2ffbb7a7d.zip |
Mark todo_get_position() public
This is needed in "ui-todo.c" now.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/calcurse.h | 1 | ||||
-rw-r--r-- | src/todo.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index 8d76bba..64c8808 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -930,6 +930,7 @@ void todo_write(struct todo *, FILE *); void todo_delete_note(struct todo *); void todo_delete(struct todo *); void todo_flag(struct todo *); +int todo_get_position(struct todo *); void ui_todo_chg_priority(struct todo *, int); void ui_todo_update_panel(int); void todo_edit_note(struct todo *, const char *); @@ -123,7 +123,7 @@ void todo_flag(struct todo *t) * Returns the position into the linked list corresponding to the * given todo item. */ -static int todo_get_position(struct todo *needle) +int todo_get_position(struct todo *needle) { llist_item_t *i; int n = 0; |