From 15605e194bff0e9abaffa9e8f96c513794c3e0d7 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Wed, 6 Oct 2004 16:39:04 +0000 Subject: Revert fix for #60551 2004-10-06 Rodrigo Moya Revert fix for #60551 * gui/dialogs/task-page.c (task_page_fill_component): start date can be after the due date, no need to compare. svn path=/trunk/; revision=27481 --- calendar/ChangeLog | 7 +++++++ calendar/gui/dialogs/task-page.c | 9 --------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 9086c60b66..8405c54a0c 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-10-06 Rodrigo Moya + + Revert fix for #60551 + + * gui/dialogs/task-page.c (task_page_fill_component): start date + can be after the due date, no need to compare. + 2004-10-02 Iván Frade Fixes #48116 diff --git a/calendar/gui/dialogs/task-page.c b/calendar/gui/dialogs/task-page.c index dc2e154b46..f3bdf10519 100644 --- a/calendar/gui/dialogs/task-page.c +++ b/calendar/gui/dialogs/task-page.c @@ -545,15 +545,6 @@ task_page_fill_component (CompEditorPage *page, ECalComponent *comp) } else { e_cal_component_set_dtstart (comp, NULL); } - - if (start_date_set && due_date_set) { - int i = 0; - i = icaltime_compare (start_tt, due_tt); - if (i == 1) { - comp_editor_page_display_validation_error (page, _("Due date is wrong"), priv->due_date); - return FALSE; - } - } /* Classification. */ e_cal_component_set_classification (comp, classification_get (priv->classification)); -- cgit v1.2.3