aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/event-editor.h
diff options
context:
space:
mode:
authorJP Rosevear <jpr@helixcode.com>2000-08-19 06:57:15 +0800
committerJP Rosevear <jpr@src.gnome.org>2000-08-19 06:57:15 +0800
commit662081e99a136363f0be60ddbe4e35542c22b16e (patch)
tree0d18865656bd2c9da692bebc2ee18ec4acb65188 /calendar/gui/event-editor.h
parentca572bccbdfcb4929646605430e01079f41fa8ea (diff)
downloadgsoc2013-evolution-662081e99a136363f0be60ddbe4e35542c22b16e.tar
gsoc2013-evolution-662081e99a136363f0be60ddbe4e35542c22b16e.tar.gz
gsoc2013-evolution-662081e99a136363f0be60ddbe4e35542c22b16e.tar.bz2
gsoc2013-evolution-662081e99a136363f0be60ddbe4e35542c22b16e.tar.lz
gsoc2013-evolution-662081e99a136363f0be60ddbe4e35542c22b16e.tar.xz
gsoc2013-evolution-662081e99a136363f0be60ddbe4e35542c22b16e.tar.zst
gsoc2013-evolution-662081e99a136363f0be60ddbe4e35542c22b16e.zip
Update prototypes.
2000-08-18 JP Rosevear <jpr@helixcode.com> * gui/event-editor.h: Update prototypes. * gui/event-editor.c: Need to come back here later to fix the alarm stuff. The gui also needs to be completely redone to support the fancier CalComponent settings (exrules, rdates, etc) There are some warnings that I put in to mark some of these spots (event_editor_destroy): Use Calcomponent instead of iCalObject (make_title_from_comp): ditto (clear_widgets): ditto (fill_widgets): ditto (classification_get): ditto (dialog_to_comp_object): ditto (save_ical_object): ditto (close_dialog): ditto (event_editor_set_ical_object): ditto svn path=/trunk/; revision=4875
Diffstat (limited to 'calendar/gui/event-editor.h')
-rw-r--r--calendar/gui/event-editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/event-editor.h b/calendar/gui/event-editor.h
index 7f5cedf37c..8e95e08cfb 100644
--- a/calendar/gui/event-editor.h
+++ b/calendar/gui/event-editor.h
@@ -52,7 +52,7 @@ struct _EventEditorClass {
/* Notification signals */
- void (* save_ical_object) (EventEditor *ee, iCalObject *ico);
+ void (* save_ical_object) (EventEditor *ee, CalComponent *comp);
void (* ical_object_released) (EventEditor *ee, const char *uid);
void (* editor_closed) (EventEditor *ee);
};
@@ -63,7 +63,7 @@ EventEditor *event_editor_construct (EventEditor *ee);
EventEditor *event_editor_new (void);
-void event_editor_set_ical_object (EventEditor *ee, iCalObject *ico);
+void event_editor_set_ical_object (EventEditor *ee, CalComponent *comp);
void event_editor_focus (EventEditor *ee);