Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-page-action-widget.c2
-rw-r--r--shell/ev-pixbuf-cache.c4
-rw-r--r--shell/ev-properties-fonts.c2
-rw-r--r--shell/ev-tooltip.c2
4 files changed, 10 insertions, 0 deletions
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