Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
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
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
-rw-r--r--ChangeLog14
-rw-r--r--cut-n-paste/recent-files/egg-recent-view-uimanager.c2
-rw-r--r--properties/ev-properties-view.c2
-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
7 files changed, 28 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ad45a9c..fa91ddd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+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.
+
2007-04-22 Brian Pepple <bpepple@fedoraproject.org>
* data/Makefile.am (update-icon-cache): Updates
diff --git a/cut-n-paste/recent-files/egg-recent-view-uimanager.c b/cut-n-paste/recent-files/egg-recent-view-uimanager.c
index 70d6639..b8e3d4d 100644
--- a/cut-n-paste/recent-files/egg-recent-view-uimanager.c
+++ b/cut-n-paste/recent-files/egg-recent-view-uimanager.c
@@ -522,6 +522,8 @@ egg_recent_view_uimanager_finalize (GObject *object)
g_object_unref (view->client);
view->client = NULL;
}
+
+ G_OBJECT_CLASS (egg_recent_view_uimanager_parent_class)->finalize (object);
}
static void
diff --git a/properties/ev-properties-view.c b/properties/ev-properties-view.c
index 1b8f1fb..2c2d8f0 100644
--- a/properties/ev-properties-view.c
+++ b/properties/ev-properties-view.c
@@ -96,6 +96,8 @@ ev_properties_view_dispose (GObject *object)
g_object_unref (properties->xml);
properties->xml = NULL;
}
+
+ G_OBJECT_CLASS (ev_properties_view_parent_class)->dispose (object);
}
static void
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