From 80e24954c20453a83c57a979f84c74c6adffee62 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Mon, 25 Jun 2012 12:04:45 +0200 Subject: Simplify recur_apoint_switch_notify() Pass the recurrent appointment itself instead of passing a date and an item number. This is quite simple as we can just pass the pointer that is contained in the generic item structure and don't have to LLIST_TS_FIND_*() the item first any more. Signed-off-by: Lukas Fleischer --- src/apoint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/apoint.c') diff --git a/src/apoint.c b/src/apoint.c index 1483beb..16efd25 100644 --- a/src/apoint.c +++ b/src/apoint.c @@ -560,7 +560,7 @@ void apoint_switch_notify(void) date = calendar_get_slctd_day_sec(); if (p->type == RECUR_APPT) { - recur_apoint_switch_notify(date, p->appt_pos); + recur_apoint_switch_notify(p->item.rapt); return; } else if (p->type == APPT) apoint_nb = day_item_nb(date, hilt, APPT); -- cgit v1.2.3-54-g00ecf