aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/cal_struct.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1998-08-25 03:30:06 +0800
committernobody <nobody@localhost>1998-08-25 03:30:06 +0800
commit6f8dd17dcdc11ee3a3f6ad2c2c862f3c10b48c1c (patch)
treeaba63c4563f2746447a962ed2cce62c6412adda5 /calendar/gui/cal_struct.h
parentabdba7c651a0a04809c8a8a20c72188fbd62d2b9 (diff)
downloadgsoc2013-evolution-V_0_00_01.tar
gsoc2013-evolution-V_0_00_01.tar.gz
gsoc2013-evolution-V_0_00_01.tar.bz2
gsoc2013-evolution-V_0_00_01.tar.lz
gsoc2013-evolution-V_0_00_01.tar.xz
gsoc2013-evolution-V_0_00_01.tar.zst
gsoc2013-evolution-V_0_00_01.zip
This commit was manufactured by cvs2svn to create tag 'V_0_00_01'.V_0_00_01
svn path=/tags/V_0_00_01/; revision=335
Diffstat (limited to 'calendar/gui/cal_struct.h')
-rw-r--r--calendar/gui/cal_struct.h27
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;
-};
-