diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-29 10:38:48 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-29 10:38:48 +0800 |
commit | 282114a676e69a0b4c0656b3a6266d27165b2039 (patch) | |
tree | d34c5be00109f8f6af69412bbe67a6265f112098 /calendar/gui/calendar.h | |
parent | 55ae95fe78692dfa59a17520b40b6ac89fcad706 (diff) | |
download | gsoc2013-evolution-282114a676e69a0b4c0656b3a6266d27165b2039.tar gsoc2013-evolution-282114a676e69a0b4c0656b3a6266d27165b2039.tar.gz gsoc2013-evolution-282114a676e69a0b4c0656b3a6266d27165b2039.tar.bz2 gsoc2013-evolution-282114a676e69a0b4c0656b3a6266d27165b2039.tar.lz gsoc2013-evolution-282114a676e69a0b4c0656b3a6266d27165b2039.tar.xz gsoc2013-evolution-282114a676e69a0b4c0656b3a6266d27165b2039.tar.zst gsoc2013-evolution-282114a676e69a0b4c0656b3a6266d27165b2039.zip |
Lots of fixes:
Lots of fixes:
1. Alarms are rescheduled when an event has been changed.
2. Avoid emitting spurious event changes.
3. Applied black magic to get the mail-notification
working.
Miguel.
svn path=/trunk/; revision=199
Diffstat (limited to 'calendar/gui/calendar.h')
-rw-r--r-- | calendar/gui/calendar.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/calendar.h b/calendar/gui/calendar.h index 91d0f3338c..0a0e949d92 100644 --- a/calendar/gui/calendar.h +++ b/calendar/gui/calendar.h @@ -51,6 +51,9 @@ void calendar_iterate (Calendar *cal, time_t start, time_t end /* Note this routine returns a GList with CalendarObjects */ GList *calendar_get_events_in_range (Calendar *cal, time_t start, time_t end); +/* Informs the calendar that obj information has changed */ +void calendar_object_changed (Calendar *cal, iCalObject *obj, int flags); + /* Destroy the above list with this method */ void calendar_destroy_event_list (GList *l); |