From adac6994268794b434973701ed5f20386eed02c9 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Thu, 17 Dec 1998 04:40:38 +0000 Subject: Rewrote the old and broken alarm system. It never actually worked 1998-12-16 Miguel de Icaza Rewrote the old and broken alarm system. It never actually worked properly. Now it works properly, and I figured a nice way to get the Audio alarm do something nicer (it is now like an alarm clock :-). * gnome-cal.c (calendar_notify): Now we take a CalendarAlarm to actually distinguish which alarm was triggered. * alarm.c (alarm_ready): The code was only activating the first alarm. Reschedule the timer upon delivery of an alarm. svn path=/trunk/; revision=535 --- calendar/gui/calendar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'calendar/gui/calendar.c') diff --git a/calendar/gui/calendar.c b/calendar/gui/calendar.c index 3f4b10aeaf..e510f1f1b1 100644 --- a/calendar/gui/calendar.c +++ b/calendar/gui/calendar.c @@ -14,8 +14,8 @@ #include #include -#include "alarm.h" #include "calendar.h" +#include "alarm.h" #include "timeutil.h" #include "../libversit/vcc.h" @@ -42,7 +42,7 @@ try_add (iCalObject *ico, CalendarAlarm *alarm, time_t start, time_t end) return; if (alarm->trigger > calendar_day_end) return; - alarm_add (alarm->trigger, calendar_notify, ico); + alarm_add (alarm, &calendar_notify, ico); } static int -- cgit v1.2.3