diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-08-25 12:05:42 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-08-25 12:05:42 +0800 |
commit | 6252ffa2f5708c65bba754f74cda708558d733a7 (patch) | |
tree | 63e984687c95ab8fa08e2715600d487f68370e95 /calendar/gui/e-day-view.c | |
parent | 38387de2ea45b04b07414e0c8d6c8f03b39a5461 (diff) | |
download | gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.gz gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.bz2 gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.lz gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.xz gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.tar.zst gsoc2013-evolution-6252ffa2f5708c65bba754f74cda708558d733a7.zip |
Properly append to list
2000-08-24 JP Rosevear <jpr@helixcode.com>
* gui/gncal-todo.c (ok_button): Properly append to list
* gui/event-editor.c (dialog_to_comp_object): ditto
* gui/e-day-view.c (e_day_view_on_new_appointment): The base
times are not UTC
* gui/e-week-view.c (e_week_view_on_new_appointment): ditto
svn path=/trunk/; revision=5031
Diffstat (limited to 'calendar/gui/e-day-view.c')
-rw-r--r-- | calendar/gui/e-day-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index 928ca25b4e..a81a71d603 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -2415,10 +2415,10 @@ e_day_view_on_new_appointment (GtkWidget *widget, gpointer data) date.value = &itt; date.tzid = NULL; - *date.value = icaltime_from_timet (dtstart, FALSE, TRUE); + *date.value = icaltime_from_timet (dtstart, FALSE, FALSE); cal_component_set_dtstart (comp, &date); - *date.value = icaltime_from_timet (dtend, FALSE, TRUE); + *date.value = icaltime_from_timet (dtend, FALSE, FALSE); cal_component_set_dtend (comp, &date); cal_component_commit_sequence (comp); |