Remove unused function day_item_nb()

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2012-06-29 11:37:37 +02:00
parent ceab447e75
commit 3f1359cdeb
2 changed files with 0 additions and 20 deletions

View File

@ -678,7 +678,6 @@ unsigned day_chk_busy_slices(struct date, int, int *);
struct day_item *day_cut_item(long, int); struct day_item *day_cut_item(long, int);
int day_paste_item(struct day_item *, long); int day_paste_item(struct day_item *, long);
struct day_item *day_get_item(int); struct day_item *day_get_item(int);
int day_item_nb(long, int, int);
void day_edit_note(struct day_item *, const char *); void day_edit_note(struct day_item *, const char *);
void day_view_note(struct day_item *, const char *); void day_view_note(struct day_item *, const char *);
void day_item_switch_notify(struct day_item *); void day_item_switch_notify(struct day_item *);

View File

@ -652,25 +652,6 @@ struct day_item *day_get_item(int item_number)
return LLIST_GET_DATA(LLIST_NTH(&day_items, item_number - 1)); return LLIST_GET_DATA(LLIST_NTH(&day_items, item_number - 1));
} }
/* Returns the real item number, given its type. */
int day_item_nb(long date, int day_num, int type)
{
int i, nb_item[MAX_TYPES];
llist_item_t *j;
for (i = 0; i < MAX_TYPES; i++)
nb_item[i] = 0;
j = LLIST_FIRST(&day_items);
for (i = 1; i < day_num; i++) {
struct day_item *day = LLIST_TS_GET_DATA(j);
nb_item[day->type - 1]++;
j = LLIST_TS_NEXT(j);
}
return nb_item[type - 1];
}
/* Attach a note to an appointment or event. */ /* Attach a note to an appointment or event. */
void day_edit_note(struct day_item *p, const char *editor) void day_edit_note(struct day_item *p, const char *editor)
{ {