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/e-cal-model.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/e-cal-model.c')
-rw-r--r-- | calendar/gui/e-cal-model.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index eec7403ff3..be61d1fd72 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -856,7 +856,7 @@ ecm_append_row (ETableModel *etm, ETableModel *source, gint row) if (!(comp_data.client && e_cal_get_load_state (comp_data.client) == E_CAL_LOAD_LOADED)) return; - comp_data.icalcomp = e_cal_model_create_component_with_defaults (model); + comp_data.icalcomp = e_cal_model_create_component_with_defaults (model, FALSE); /* set values for our fields */ set_categories (&comp_data, e_table_model_value_at (source, E_CAL_MODEL_FIELD_CATEGORIES, row)); @@ -2139,7 +2139,7 @@ e_cal_model_set_search_query_with_time_range (ECalModel *model, const gchar *sex * e_cal_model_create_component_with_defaults */ icalcomponent * -e_cal_model_create_component_with_defaults (ECalModel *model) +e_cal_model_create_component_with_defaults (ECalModel *model, gboolean all_day) { ECalModelPrivate *priv; ECalComponent *comp; @@ -2158,7 +2158,7 @@ e_cal_model_create_component_with_defaults (ECalModel *model) switch (priv->kind) { case ICAL_VEVENT_COMPONENT : - comp = cal_comp_event_new_with_defaults (client); + comp = cal_comp_event_new_with_defaults (client, all_day); break; case ICAL_VTODO_COMPONENT : comp = cal_comp_task_new_with_defaults (client); |