diff options
author | JP Rosevear <jpr@ximian.com> | 2003-04-30 02:51:51 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-04-30 02:51:51 +0800 |
commit | 63d47beb222c34ec02e127e51a5471fc2029b4c1 (patch) | |
tree | 020cd088a8bb4cc5a9823de411e5e94784e93d9a /calendar/gui/e-meeting-time-sel.c | |
parent | 7a8383281d0166b7ac202ff380ea14a19cc2a051 (diff) | |
download | gsoc2013-evolution-63d47beb222c34ec02e127e51a5471fc2029b4c1.tar.gz gsoc2013-evolution-63d47beb222c34ec02e127e51a5471fc2029b4c1.tar.zst gsoc2013-evolution-63d47beb222c34ec02e127e51a5471fc2029b4c1.zip |
ditto
2003-04-29 JP Rosevear <jpr@ximian.com>
* gui/dialogs/task-editor.c (task_editor_finalize): ditto
* gui/dialogs/event-editor.c (event_editor_finalize): don't unref
the model here
* gui/e-meeting-time-sel.c (e_meeting_time_selector_destroy): null
up the display_top and display_main for re-entrancy purposes
svn path=/trunk/; revision=21018
Diffstat (limited to 'calendar/gui/e-meeting-time-sel.c')
-rw-r--r-- | calendar/gui/e-meeting-time-sel.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c index bf113c0b23..b1d7ff0bbc 100644 --- a/calendar/gui/e-meeting-time-sel.c +++ b/calendar/gui/e-meeting-time-sel.c @@ -852,6 +852,9 @@ e_meeting_time_selector_destroy (GtkObject *object) mts->model = NULL; } + mts->display_top = NULL; + mts->display_main = NULL; + if (GTK_OBJECT_CLASS (parent_class)->destroy) (*GTK_OBJECT_CLASS (parent_class)->destroy)(object); } |