aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/cal_struct.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-12-06 06:13:49 +0800
committernobody <nobody@localhost>1999-12-06 06:13:49 +0800
commit05e3d1002ae72055c52a356cad5aab41f4990e6a (patch)
tree1ccf57237d944e7088bd598f9ab0c5f6f859be2d /calendar/gui/cal_struct.h
parentd9c655cd489e0c2989669005b5fa5415c92f8097 (diff)
downloadgsoc2013-evolution-BUG_BUDDY_0_6.tar.gz
gsoc2013-evolution-BUG_BUDDY_0_6.tar.zst
gsoc2013-evolution-BUG_BUDDY_0_6.zip
This commit was manufactured by cvs2svn to create tagBUG_BUDDY_0_6
'BUG_BUDDY_0_6'. svn path=/tags/BUG_BUDDY_0_6/; revision=1465
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;
-};
-