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/ev-pixbuf-cache.c') 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); } -- cgit v0.9.1