aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/editor-page.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-05-24 05:17:41 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-05-24 05:17:41 +0800
commit30dce44f3897757c3a1cb2ecfe215a6c628e9024 (patch)
tree72d7b8fd58dddb121317449651c61b61e44feb47 /calendar/gui/dialogs/editor-page.h
parent76f220863e83aa27c4f2d9efe214f697885072e0 (diff)
downloadgsoc2013-evolution-30dce44f3897757c3a1cb2ecfe215a6c628e9024.tar
gsoc2013-evolution-30dce44f3897757c3a1cb2ecfe215a6c628e9024.tar.gz
gsoc2013-evolution-30dce44f3897757c3a1cb2ecfe215a6c628e9024.tar.bz2
gsoc2013-evolution-30dce44f3897757c3a1cb2ecfe215a6c628e9024.tar.lz
gsoc2013-evolution-30dce44f3897757c3a1cb2ecfe215a6c628e9024.tar.xz
gsoc2013-evolution-30dce44f3897757c3a1cb2ecfe215a6c628e9024.tar.zst
gsoc2013-evolution-30dce44f3897757c3a1cb2ecfe215a6c628e9024.zip
Finished porting from the old event-editor.c. Made it store a clone of the
2001-05-23 Federico Mena Quintero <federico@ximian.com> * gui/dialogs/recurrence-page.c: Finished porting from the old event-editor.c. Made it store a clone of the component for when we need to expand the recurrence set. 2001-05-22 Federico Mena Quintero <federico@ximian.com> * gui/dialogs/event-page.c (event_page_get_dates): New function. * gui/dialogs/editor-page.c (editor_page_set_dates): Renamed from editor_page_set_dtstart(); now sets both DTSTART and DTEND. * gui/dialogs/alarm-page.c (alarm_page_set_dates): Ahem, it is a svn path=/trunk/; revision=9953
Diffstat (limited to 'calendar/gui/dialogs/editor-page.h')
-rw-r--r--calendar/gui/dialogs/editor-page.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/editor-page.h b/calendar/gui/dialogs/editor-page.h
index 3f9587c9de..48e688ae16 100644
--- a/calendar/gui/dialogs/editor-page.h
+++ b/calendar/gui/dialogs/editor-page.h
@@ -61,7 +61,7 @@ typedef struct {
void (* set_summary) (EditorPage *page, const char *summary);
char *(* get_summary) (EditorPage *page);
- void (* set_dtstart) (EditorPage *page, time_t start);
+ void (* set_dates) (EditorPage *page, time_t start, time_t end);
} EditorPageClass;
GtkType editor_page_get_type (void);
@@ -74,7 +74,7 @@ void editor_page_fill_component (EditorPage *page, CalComponent *comp);
void editor_page_set_summary (EditorPage *page, const char *summary);
char *editor_page_get_summary (EditorPage *page);
-void editor_page_set_dtstart (EditorPage *page, time_t start);
+void editor_page_set_dates (EditorPage *page, time_t start, time_t end);
void editor_page_notify_changed (EditorPage *page);
void editor_page_notify_summary_changed (EditorPage *page);