aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/event-editor.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@helixcode.com>2000-08-30 01:00:36 +0800
committerJP Rosevear <jpr@src.gnome.org>2000-08-30 01:00:36 +0800
commit5fadb311e670e53e35c8cfd637c70d57ed497fb1 (patch)
tree3d54a006d768882480123056c42803063d664e38 /calendar/gui/event-editor.c
parent1ed15f41e77c067d6b47414e3a649c366a030834 (diff)
downloadgsoc2013-evolution-5fadb311e670e53e35c8cfd637c70d57ed497fb1.tar
gsoc2013-evolution-5fadb311e670e53e35c8cfd637c70d57ed497fb1.tar.gz
gsoc2013-evolution-5fadb311e670e53e35c8cfd637c70d57ed497fb1.tar.bz2
gsoc2013-evolution-5fadb311e670e53e35c8cfd637c70d57ed497fb1.tar.lz
gsoc2013-evolution-5fadb311e670e53e35c8cfd637c70d57ed497fb1.tar.xz
gsoc2013-evolution-5fadb311e670e53e35c8cfd637c70d57ed497fb1.tar.zst
gsoc2013-evolution-5fadb311e670e53e35c8cfd637c70d57ed497fb1.zip
Use event_editor_set_event_object
2000-08-29 JP Rosevear <jpr@helixcode.com> * gui/gnome-cal.c (gnome_calendar_edit_object): Use event_editor_set_event_object * gui/event-editor.c (event_editor_set_event_object): Rename from event_editor_set_ical_object * gui/event-editor.h: Update prototype * gui/e-week-view.c (e_week_view_on_new_appointment): Call cal_component_commit_sequence after event changes. Default to these being all day events. svn path=/trunk/; revision=5097
Diffstat (limited to 'calendar/gui/event-editor.c')
-rw-r--r--calendar/gui/event-editor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c
index 260b76d94e..b5a0322af1 100644
--- a/calendar/gui/event-editor.c
+++ b/calendar/gui/event-editor.c
@@ -260,8 +260,8 @@ event_editor_destroy (GtkObject *object)
}
if (priv->comp) {
- /* We do not emit the "ical_object_released" signal here. If
- * the user cloased the dialog box, then it has already been
+ /* We do not emit the "released_event_object" signal here. If
+ * the user closed the dialog box, then it has already been
* released. If the application just destroyed the event
* editor, then it had better clean up after itself.
*/
@@ -1530,14 +1530,14 @@ event_editor_new (void)
}
/**
- * event_editor_set_ical_object:
+ * event_editor_set_event_object:
* @ee: An event editor.
* @comp: A calendar object.
*
* Sets the calendar object that an event editor dialog will manipulate.
**/
void
-event_editor_set_ical_object (EventEditor *ee, CalComponent *comp)
+event_editor_set_event_object (EventEditor *ee, CalComponent *comp)
{
EventEditorPrivate *priv;
char *title;