aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/task-editor.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-07-04 09:33:05 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-07-04 09:33:05 +0800
commit720a792d11bbcadfd8bddfa8d68a0fbe0eb817d0 (patch)
treec8b9492d1846916055a6f3aaa9628aaffd6548a3 /calendar/gui/dialogs/task-editor.c
parent7a2f3f2fbce5eca8bd2553db2b02de5a5edc5ff6 (diff)
downloadgsoc2013-evolution-720a792d11bbcadfd8bddfa8d68a0fbe0eb817d0.tar
gsoc2013-evolution-720a792d11bbcadfd8bddfa8d68a0fbe0eb817d0.tar.gz
gsoc2013-evolution-720a792d11bbcadfd8bddfa8d68a0fbe0eb817d0.tar.bz2
gsoc2013-evolution-720a792d11bbcadfd8bddfa8d68a0fbe0eb817d0.tar.lz
gsoc2013-evolution-720a792d11bbcadfd8bddfa8d68a0fbe0eb817d0.tar.xz
gsoc2013-evolution-720a792d11bbcadfd8bddfa8d68a0fbe0eb817d0.tar.zst
gsoc2013-evolution-720a792d11bbcadfd8bddfa8d68a0fbe0eb817d0.zip
Add new columns for information specification (meeting_page_destroy): save
2001-07-03 JP Rosevear <jpr@ximian.com> * gui/dialogs/meeting-page.c: Add new columns for information specification (meeting_page_destroy): save the table state (build_etable): load new table state * gui/dialogs/task-editor.c (task_editor_destroy): unref pages * gui/dialogs/event-editor.c (event_editor_destroy): unref pages * gui/dialogs/comp-editor.c (setup_widgets): kill warning (comp_editor_append_page): ref page passed in (close_dialog): unref pages svn path=/trunk/; revision=10777
Diffstat (limited to 'calendar/gui/dialogs/task-editor.c')
-rw-r--r--calendar/gui/dialogs/task-editor.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c
index 6b582315f4..6e5a6f689e 100644
--- a/calendar/gui/dialogs/task-editor.c
+++ b/calendar/gui/dialogs/task-editor.c
@@ -173,6 +173,9 @@ task_editor_destroy (GtkObject *object)
te = TASK_EDITOR (object);
priv = te->priv;
+ gtk_object_unref (GTK_OBJECT (priv->task_page));
+ gtk_object_unref (GTK_OBJECT (priv->task_details_page));
+
if (GTK_OBJECT_CLASS (parent_class)->destroy)
(* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}