aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/cal_struct.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1998-09-26 06:27:31 +0800
committernobody <nobody@localhost>1998-09-26 06:27:31 +0800
commit6803836c1ce1d036ca400e698a153ce43343f8e1 (patch)
tree101a3a296a26c908c562ced306343bed17feeb86 /calendar/gui/cal_struct.h
parent8b71e81b3f7dcd3dbd0c79bf23204b1ba4520c00 (diff)
downloadgsoc2013-evolution-6803836c1ce1d036ca400e698a153ce43343f8e1.tar.gz
gsoc2013-evolution-6803836c1ce1d036ca400e698a153ce43343f8e1.tar.zst
gsoc2013-evolution-6803836c1ce1d036ca400e698a153ce43343f8e1.zip
This commit was manufactured by cvs2svn to create tag 'GDM_0_4'.GDM_0_4
svn path=/tags/GDM_0_4/; revision=401
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;
-};
-