diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-08-25 05:34:24 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-08-25 05:34:24 +0800 |
commit | f9d5c373587332aac4fb4e012ad0c99c3880e8bf (patch) | |
tree | 39435ae4513fac0bc6d903ed842f88eccc1dcdda /calendar/gui/gncal-todo.c | |
parent | ccbbda543ae5171ad07d04ae1d1d16f39a93fea3 (diff) | |
download | gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.gz gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.zst gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.zip |
Update for libical 0.19
2000-08-24 JP Rosevear <jpr@helixcode.com>
* Update for libical 0.19
svn path=/trunk/; revision=5024
Diffstat (limited to 'calendar/gui/gncal-todo.c')
-rw-r--r-- | calendar/gui/gncal-todo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/gncal-todo.c b/calendar/gui/gncal-todo.c index 44df93832a..899c953723 100644 --- a/calendar/gui/gncal-todo.c +++ b/calendar/gui/gncal-todo.c @@ -81,7 +81,7 @@ ok_button (GtkWidget *widget, GnomeDialog *dialog) due_date = GNOME_DATE_EDIT (gtk_object_get_data(GTK_OBJECT(dialog), "due_date")); d = gnome_date_edit_get_date (due_date); date.value = g_new0 (struct icaltimetype, 1); - *date.value = icaltimetype_from_timet (d, 1); + *date.value = icaltime_from_timet (d, 1, TRUE); cal_component_set_dtend (comp, &date); /* Summary */ |