From 42136586e9d7f6b52c667eff258de8e649806778 Mon Sep 17 00:00:00 2001 From: Nickolay V. Shmyrev Date: Sun, 29 Apr 2007 17:17:50 +0000 Subject: Add missing chain to parent class methods. Fixes bug #433128. 2007-04-29 Nickolay V. Shmyrev * cut-n-paste/recent-files/egg-recent-view-uimanager.c: (egg_recent_view_uimanager_finalize): * properties/ev-properties-view.c: (ev_properties_view_dispose): * shell/ev-page-action-widget.c: (ev_page_action_widget_finalize): * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_finalize), (ev_pixbuf_cache_dispose): * shell/ev-properties-fonts.c: (ev_properties_fonts_dispose): * shell/ev-tooltip.c: (ev_tooltip_dispose): Add missing chain to parent class methods. Fixes bug #433128. svn path=/trunk/; revision=2428 --- (limited to 'shell') diff --git a/shell/ev-page-action-widget.c b/shell/ev-page-action-widget.c index 0212fce..2bef853 100644 --- a/shell/ev-page-action-widget.c +++ b/shell/ev-page-action-widget.c @@ -77,6 +77,8 @@ ev_page_action_widget_finalize (GObject *object) EvPageActionWidget *action_widget = EV_PAGE_ACTION_WIDGET (object); ev_page_action_widget_set_page_cache (action_widget, NULL); + + G_OBJECT_CLASS (ev_page_action_widget_parent_class)->finalize (object); } static void diff --git a/shell/ev-pixbuf-cache.c b/shell/ev-pixbuf-cache.c index dbabf1c..ed782a3 100644 --- a/shell/ev-pixbuf-cache.c +++ b/shell/ev-pixbuf-cache.c @@ -131,6 +131,8 @@ ev_pixbuf_cache_finalize (GObject *object) g_free (pixbuf_cache->prev_job); g_free (pixbuf_cache->job_list); g_free (pixbuf_cache->next_job); + + G_OBJECT_CLASS (ev_pixbuf_cache_parent_class)->finalize (object); } static void @@ -195,6 +197,8 @@ ev_pixbuf_cache_dispose (GObject *object) for (i = 0; i < PAGE_CACHE_LEN (pixbuf_cache); i++) { dispose_cache_job_info (pixbuf_cache->job_list + i, pixbuf_cache); } + + G_OBJECT_CLASS (ev_pixbuf_cache_parent_class)->dispose (object); } diff --git a/shell/ev-properties-fonts.c b/shell/ev-properties-fonts.c index b50206f..54ed063 100644 --- a/shell/ev-properties-fonts.c +++ b/shell/ev-properties-fonts.c @@ -73,6 +73,8 @@ ev_properties_fonts_dispose (GObject *object) g_object_unref (properties->fonts_job); properties->fonts_job = NULL; } + + G_OBJECT_CLASS (ev_properties_fonts_parent_class)->dispose (object); } static void diff --git a/shell/ev-tooltip.c b/shell/ev-tooltip.c index f66f22f..9f0cf65 100644 --- a/shell/ev-tooltip.c +++ b/shell/ev-tooltip.c @@ -66,6 +66,8 @@ ev_tooltip_dispose (GObject *object) g_source_remove (tooltip->priv->timer_tag); tooltip->priv->timer_tag = 0; } + + G_OBJECT_CLASS (ev_tooltip_parent_class)->dispose (object); } static void -- cgit v0.9.1