+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
g_object_unref (view->client);
view->client = NULL;
}
+
+ G_OBJECT_CLASS (egg_recent_view_uimanager_parent_class)->finalize (object);
}
static void
g_object_unref (properties->xml);
properties->xml = NULL;
}
+
+ G_OBJECT_CLASS (ev_properties_view_parent_class)->dispose (object);
}
static void
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
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
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);
}
g_object_unref (properties->fonts_job);
properties->fonts_job = NULL;
}
+
+ G_OBJECT_CLASS (ev_properties_fonts_parent_class)->dispose (object);
}
static void
g_source_remove (tooltip->priv->timer_tag);
tooltip->priv->timer_tag = 0;
}
+
+ G_OBJECT_CLASS (ev_tooltip_parent_class)->dispose (object);
}
static void