2007-08-29 Suman Manjunath Fix for bug #466051

svn path=/trunk/; revision=34131
This commit is contained in:
Milan Crha
2007-08-29 12:01:44 +00:00
parent 5733ceabba
commit ff70d4b0cc
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2007-08-29 Suman Manjunath <msuman@novell.com>
** Fix for bug #466051
* gui/dialogs/memo-page.c: (memo_page_fill_component): When memo start
date is set to 'None', do not store DTSTART property.
2007-08-28 Matthew Barnes <mbarnes@redhat.com>
* gui/e-cal-popup.c (e_cal_popup_target_new_source):

View File

@ -693,11 +693,13 @@ memo_page_fill_component (CompEditorPage *page, ECalComponent *comp)
comp_editor_page_display_validation_error (page, _("Start date is wrong"), priv->start_date);
return FALSE;
}
e_date_edit_get_date (E_DATE_EDIT (priv->start_date),
if (e_date_edit_get_date (E_DATE_EDIT (priv->start_date),
&start_tt.year,
&start_tt.month,
&start_tt.day);
e_cal_component_set_dtstart (comp, &start_date);
&start_tt.day))
e_cal_component_set_dtstart (comp, &start_date);
else
e_cal_component_set_dtstart (comp, NULL);
/* Classification. */
e_cal_component_set_classification (comp, priv->classification);