diff options
author | Milan Crha <mcrha@redhat.com> | 2009-07-03 01:31:49 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-07-03 01:31:49 +0800 |
commit | afea64785f1fbcb9852fa520f67f3a60f303c372 (patch) | |
tree | 2f24acbadabe51ff4623206c3f1c6176d239073e /calendar/gui/gnome-cal.c | |
parent | 42e75c9162402078ac629740821c3533925ee342 (diff) | |
download | gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.tar gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.tar.gz gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.tar.bz2 gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.tar.lz gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.tar.xz gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.tar.zst gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.zip |
Bug #252296 - Do not preset alarm for all day events
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r-- | calendar/gui/gnome-cal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 1e943eeb14..806f8be698 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -3510,7 +3510,7 @@ gnome_calendar_new_task (GnomeCalendar *gcal, time_t *dtstart, time_t *dtend) flags |= COMP_EDITOR_NEW_ITEM; editor = task_editor_new (ecal, flags); - icalcomp = e_cal_model_create_component_with_defaults (model); + icalcomp = e_cal_model_create_component_with_defaults (model, FALSE); comp = e_cal_component_new (); e_cal_component_set_icalcomponent (comp, icalcomp); |