diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-25 10:23:26 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-25 10:23:26 +0800 |
commit | 07f873d107539a4357c69e1f3ce8cef17cc6277f (patch) | |
tree | d45a8c78f766cbf861b8bf7b34d80dc76b75da7c /calendar/calobj.h | |
parent | ce6e9cd00e965c92debe331b7c762b18674bbc85 (diff) | |
download | gsoc2013-evolution-07f873d107539a4357c69e1f3ce8cef17cc6277f.tar gsoc2013-evolution-07f873d107539a4357c69e1f3ce8cef17cc6277f.tar.gz gsoc2013-evolution-07f873d107539a4357c69e1f3ce8cef17cc6277f.tar.bz2 gsoc2013-evolution-07f873d107539a4357c69e1f3ce8cef17cc6277f.tar.lz gsoc2013-evolution-07f873d107539a4357c69e1f3ce8cef17cc6277f.tar.xz gsoc2013-evolution-07f873d107539a4357c69e1f3ce8cef17cc6277f.tar.zst gsoc2013-evolution-07f873d107539a4357c69e1f3ce8cef17cc6277f.zip |
Fixed alarm saving code. Fixed alarm loading code. New -partial-
Fixed alarm saving code.
Fixed alarm loading code.
New -partial- implementation of the mail alarm.
It is not working, I do not know what is closing stdin to sendmail
svn path=/trunk/; revision=194
Diffstat (limited to 'calendar/calobj.h')
-rw-r--r-- | calendar/calobj.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/calobj.h b/calendar/calobj.h index 60483c68ad..12b7578f10 100644 --- a/calendar/calobj.h +++ b/calendar/calobj.h @@ -36,6 +36,9 @@ typedef struct { /* Does not get saved, internally used */ time_t offset; time_t trigger; + + int snooze_secs; + int snooze_repeat; /* Widgets */ void *w_count; /* A GtkEntry */ @@ -109,6 +112,7 @@ typedef struct { time_t _enddate; /* As found on the vCalendar file */ int __count; } Recurrence; + #define IS_INFINITE(r) (r->duration == 0) /* Flags to indicate what has changed in an object */ |