aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/cal_struct.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@src.gnome.org>2000-08-09 03:14:19 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-08-09 03:14:19 +0800
commitaae247db3dd52bc3d2cea5279cd796d4f166a475 (patch)
tree10648e759d384c978f0f2199f1514eb84e32cd2f /calendar/gui/cal_struct.h
parentf0c7677a42961a5c736deebc99b154e81452a773 (diff)
downloadgsoc2013-evolution-aae247db3dd52bc3d2cea5279cd796d4f166a475.tar
gsoc2013-evolution-aae247db3dd52bc3d2cea5279cd796d4f166a475.tar.gz
gsoc2013-evolution-aae247db3dd52bc3d2cea5279cd796d4f166a475.tar.bz2
gsoc2013-evolution-aae247db3dd52bc3d2cea5279cd796d4f166a475.tar.lz
gsoc2013-evolution-aae247db3dd52bc3d2cea5279cd796d4f166a475.tar.xz
gsoc2013-evolution-aae247db3dd52bc3d2cea5279cd796d4f166a475.tar.zst
gsoc2013-evolution-aae247db3dd52bc3d2cea5279cd796d4f166a475.zip
Removing old cruft - Federico
svn path=/trunk/; revision=4603
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;
-};
-