diff options
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/tasks-component.c | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 4f6c6abea1..22b036a633 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,12 @@ 2008-12-15 Milan Crha <mcrha@redhat.com> + ** Fix for bug #540181 + + * gui/tasks-component.c: (destroy_component_view): + Do not touch already freed object. + +2008-12-15 Milan Crha <mcrha@redhat.com> + ** Part of fix for bug #564229 * gui/dialogs/alarm-dialog.c: (populate_widgets_from_alarm): diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index c21dbfb612..37c04f40c1 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -1076,7 +1076,6 @@ destroy_component_view (TasksComponentView *component_view) { GList *l; - g_signal_handlers_disconnect_by_func (component_view->table, G_CALLBACK (table_selection_change_cb), component_view); g_signal_handlers_disconnect_matched (component_view->model, G_SIGNAL_MATCH_DATA, 0, 0, 0, 0, component_view); if (component_view->source_list) |