diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-03 15:33:34 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-03 15:33:34 +0800 |
commit | 45a75ede7ff27645c23cd0b009bf023bea2b6d2f (patch) | |
tree | ad115a999db4f5a0ecb8073858ce7343ab66a3ca /calendar/eventedit.h | |
parent | 197ca7ac5bd990427d8c5e7683b6408ffc23f261 (diff) | |
download | gsoc2013-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/eventedit.h')
-rw-r--r-- | calendar/eventedit.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/calendar/eventedit.h b/calendar/eventedit.h index edd8059af1..85b5b86790 100644 --- a/calendar/eventedit.h +++ b/calendar/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 |