aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/cal_struct.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-02-26 07:33:55 +0800
committernobody <nobody@localhost>2000-02-26 07:33:55 +0800
commitb3b6438950017d1ec4612d2dcc4f88f7e6c465ff (patch)
treee5dfae6704668d028cbb0e1fdc55e43b992004bc /calendar/gui/cal_struct.h
parent59d2deddc74713097251e0b2c0eb48f078f78268 (diff)
downloadgsoc2013-evolution-GTKHTML_0_1.tar.gz
gsoc2013-evolution-GTKHTML_0_1.tar.zst
gsoc2013-evolution-GTKHTML_0_1.zip
This commit was manufactured by cvs2svn to create tag 'GTKHTML_0_1'.GTKHTML_0_1
svn path=/tags/GTKHTML_0_1/; revision=1958
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;
-};
-