diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | widgets/e-text/e-text.c | 5 | ||||
-rw-r--r-- | widgets/text/e-text.c | 5 |
3 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2000-05-09 Christopher James Lahey <clahey@helixcode.com> + + * widgets/e-text/e-text.c: Remove the tooltip callback when + destroyed. + 2000-05-09 Matt Loper <matt@helixcode.com> * calendar/pcs/cal-backend.c (cal_backend_add_cal): Return nothing diff --git a/widgets/e-text/e-text.c b/widgets/e-text/e-text.c index 0086a80194..8e2f4451a6 100644 --- a/widgets/e-text/e-text.c +++ b/widgets/e-text/e-text.c @@ -419,6 +419,11 @@ e_text_destroy (GtkObject *object) text->timer = NULL; } + if ( text->tooltip_timeout ) { + gtk_timeout_remove (text->tooltip_timeout); + text->tooltip_timeout = 0; + } + if (GTK_OBJECT_CLASS (parent_class)->destroy) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c index 0086a80194..8e2f4451a6 100644 --- a/widgets/text/e-text.c +++ b/widgets/text/e-text.c @@ -419,6 +419,11 @@ e_text_destroy (GtkObject *object) text->timer = NULL; } + if ( text->tooltip_timeout ) { + gtk_timeout_remove (text->tooltip_timeout); + text->tooltip_timeout = 0; + } + if (GTK_OBJECT_CLASS (parent_class)->destroy) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } |