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/comp-util.c | |
parent | 42e75c9162402078ac629740821c3533925ee342 (diff) | |
download | gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.tar.gz gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.tar.zst gsoc2013-evolution-afea64785f1fbcb9852fa520f67f3a60f303c372.zip |
Bug #252296 - Do not preset alarm for all day events
Diffstat (limited to 'calendar/gui/comp-util.c')
-rw-r--r-- | calendar/gui/comp-util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/comp-util.c b/calendar/gui/comp-util.c index 62a55d2c30..cb3cf95def 100644 --- a/calendar/gui/comp-util.c +++ b/calendar/gui/comp-util.c @@ -278,12 +278,12 @@ is_icalcomp_on_the_server (icalcomponent *icalcomp, ECal *client) * cal_comp_event_new_with_defaults: * * Creates a new VEVENT component and adds any default alarms to it as set in - * the program's configuration values. + * the program's configuration values, but only if not the all_day event. * * Return value: A newly-created calendar component. **/ ECalComponent * -cal_comp_event_new_with_defaults (ECal *client) +cal_comp_event_new_with_defaults (ECal *client, gboolean all_day) { icalcomponent *icalcomp; ECalComponent *comp; @@ -303,7 +303,7 @@ cal_comp_event_new_with_defaults (ECal *client) e_cal_component_set_new_vtype (comp, E_CAL_COMPONENT_EVENT); } - if (!calendar_config_get_use_default_reminder ()) + if (all_day || !calendar_config_get_use_default_reminder ()) return comp; interval = calendar_config_get_default_reminder_interval (); @@ -361,7 +361,7 @@ cal_comp_event_new_with_current_time (ECal *client, gboolean all_day) ECalComponentDateTime dt; icaltimezone *zone; - comp = cal_comp_event_new_with_defaults (client); + comp = cal_comp_event_new_with_defaults (client, all_day); g_return_val_if_fail (comp, NULL); |