diff options
author | Shuai Liu <shuai.liu@sun.com> | 2008-06-04 15:20:24 +0800 |
---|---|---|
committer | Jeff Cai <jeffcai@src.gnome.org> | 2008-06-04 15:20:24 +0800 |
commit | dc11e097f7fe7c4ce93756dfae34bd5f0e72fd1c (patch) | |
tree | ec18ebb05e2a3f27f46fa007577db8f8a2726211 /calendar/gui | |
parent | 2e763ace9acb387920b0f10d90737f8fd2271d03 (diff) | |
download | gsoc2013-evolution-dc11e097f7fe7c4ce93756dfae34bd5f0e72fd1c.tar.gz gsoc2013-evolution-dc11e097f7fe7c4ce93756dfae34bd5f0e72fd1c.tar.zst gsoc2013-evolution-dc11e097f7fe7c4ce93756dfae34bd5f0e72fd1c.zip |
** Fix for bug #535204
2008-06-04 Shuai Liu <shuai.liu@sun.com>
** Fix for bug #535204
* gui/tasks-component.c: (destroy_component_view):
The tasks objects had been destroyed before the call of destroy_
component in tasks-component.c. No need to call them.
svn path=/trunk/; revision=35591
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/tasks-component.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index 688d42c793..38085cb77e 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -1163,8 +1163,6 @@ destroy_component_view (TasksComponentView *component_view) 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); - g_signal_handlers_disconnect_by_func (component_view->tasks, G_CALLBACK (source_added_cb), component_view); - g_signal_handlers_disconnect_by_func (component_view->tasks, G_CALLBACK (source_removed_cb), component_view); if (component_view->source_list) g_object_unref (component_view->source_list); |