aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/eventedit.h
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-04-03 15:33:34 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-04-03 15:33:34 +0800
commit45a75ede7ff27645c23cd0b009bf023bea2b6d2f (patch)
treead115a999db4f5a0ecb8073858ce7343ab66a3ca /calendar/gui/eventedit.h
parent197ca7ac5bd990427d8c5e7683b6408ffc23f261 (diff)
downloadgsoc2013-evolution-45a75ede7ff27645c23cd0b009bf023bea2b6d2f.tar
gsoc2013-evolution-45a75ede7ff27645c23cd0b009bf023bea2b6d2f.tar.gz
gsoc2013-evolution-45a75ede7ff27645c23cd0b009bf023bea2b6d2f.tar.bz2
gsoc2013-evolution-45a75ede7ff27645c23cd0b009bf023bea2b6d2f.tar.lz
gsoc2013-evolution-45a75ede7ff27645c23cd0b009bf023bea2b6d2f.tar.xz
gsoc2013-evolution-45a75ede7ff27645c23cd0b009bf023bea2b6d2f.tar.zst
gsoc2013-evolution-45a75ede7ff27645c23cd0b009bf023bea2b6d2f.zip
add test.vcf, more code progress -mig
svn path=/trunk/; revision=100
Diffstat (limited to 'calendar/gui/eventedit.h')
-rw-r--r--calendar/gui/eventedit.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/calendar/gui/eventedit.h b/calendar/gui/eventedit.h
index edd8059af1..85b5b86790 100644
--- a/calendar/gui/eventedit.h
+++ b/calendar/gui/eventedit.h
@@ -26,13 +26,17 @@ typedef struct {
GtkWidget *general_owner;
GtkWidget *general_summary;
GtkWidget *start_time, *end_time;
+
+ /* The associated ical object */
+ iCalObject *ical;
+ int new_ical;
} EventEditor;
typedef struct {
GnomePropertyBoxClass parent_class;
} EventEditorClass;
-GtkWidget *event_editor_new (void);
+GtkWidget *event_editor_new (iCalObject *);
END_GNOME_DECLS
#endif