diff options
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-calendar-table.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 064cfe368b..e8390419ee 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2007-01-08 Wang Xin <jedy.wang@sun.com> + + Fixes #470968 + + * calendar/gui/e-calendar-table.c: Delete the task with attendee if OK button + of the confirm dialog is clicked. + 2007-09-03 Srinivasa Ragavan <sragavan@novell.com> ** Fix a build break. diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index 64c8c5660f..f4311c3885 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -812,6 +812,7 @@ e_calendar_table_delete_selected (ECalendarTable *cal_table) gboolean retract = FALSE; retract = prompt_retract_dialog (comp, &retract_comment, GTK_WIDGET (cal_table)); + delete = retract; if (retract) { GList *users = NULL; icalcomponent *icalcomp = NULL, *mod_comp = NULL; |