Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-pixbuf-cache.c
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>2007-04-29 17:17:50 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2007-04-29 17:17:50 (GMT)
commit42136586e9d7f6b52c667eff258de8e649806778 (patch)
tree8ed64681a3fcc4cd783f50b155e61eae1af08823 /shell/ev-pixbuf-cache.c
parent770aad84cf876bc66273577e5b10dd424fa1558a (diff)
Add missing chain to parent class methods. Fixes bug #433128.
2007-04-29 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * 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
Diffstat (limited to 'shell/ev-pixbuf-cache.c')
-rw-r--r--shell/ev-pixbuf-cache.c4
1 files changed, 4 insertions, 0 deletions
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);
}