diff options
author | nobody <nobody@localhost> | 1998-12-10 00:25:39 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1998-12-10 00:25:39 +0800 |
commit | 2041ddc092b3b6f503ef382e8a693eba68263d88 (patch) | |
tree | 9d4994954706edce7d2afc711fa7927538390943 /calendar/gui/cal_struct.h | |
parent | 60ab9dc306f5dae4f807da3336cb9329a77c665f (diff) | |
download | gsoc2013-evolution-PRE_PANEL2.tar gsoc2013-evolution-PRE_PANEL2.tar.gz gsoc2013-evolution-PRE_PANEL2.tar.bz2 gsoc2013-evolution-PRE_PANEL2.tar.lz gsoc2013-evolution-PRE_PANEL2.tar.xz gsoc2013-evolution-PRE_PANEL2.tar.zst gsoc2013-evolution-PRE_PANEL2.zip |
This commit was manufactured by cvs2svn to create tag 'PRE_PANEL2'.PRE_PANEL2
svn path=/tags/PRE_PANEL2/; revision=521
Diffstat (limited to 'calendar/gui/cal_struct.h')
-rw-r--r-- | calendar/gui/cal_struct.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/calendar/gui/cal_struct.h b/calendar/gui/cal_struct.h deleted file mode 100644 index 411036c7aa..0000000000 --- a/calendar/gui/cal_struct.h +++ /dev/null @@ -1,27 +0,0 @@ -#define MAX_SZ 30 - -enum RepeatType { - Single, - Days, - Months, - WeekDays, - MonthDays -}; - - -struct actionitem { - char date[MAX_SZ]; - int time; /* Minutes past midnight */ -}; - -struct event { - struct actionitem start; - struct actionitem end; - - enum RepeatType repeat; - int repeatcount; - char description[MAX_SZ]; - char subtype[MAX_SZ]; - GList *properties; -}; - |