2007-08-29 Suman Manjunath Fix for bug #466051
svn path=/trunk/; revision=34131
This commit is contained in:
@ -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):
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user