[totem] Remove a redundant finalize method from the chapters plugin



commit bf334cd68556d02a424a913a3e62129f83724b8e
Author: Philip Withnall <philip tecnocode co uk>
Date:   Sun Sep 5 00:55:52 2010 +0100

    Remove a redundant finalize method from the chapters plugin

 src/plugins/chapters/totem-chapters.c |    8 --------
 1 files changed, 0 insertions(+), 8 deletions(-)
---
diff --git a/src/plugins/chapters/totem-chapters.c b/src/plugins/chapters/totem-chapters.c
index c937ea5..6c9245d 100644
--- a/src/plugins/chapters/totem-chapters.c
+++ b/src/plugins/chapters/totem-chapters.c
@@ -106,7 +106,6 @@ enum {
 
 G_MODULE_EXPORT GType register_totem_plugin (GTypeModule *module);
 GType totem_chapters_plugin_get_type (void) G_GNUC_CONST;
-static void totem_chapters_plugin_finalize (GObject *object);
 static void totem_file_opened_async_cb (TotemObject *totem, const gchar *uri, TotemChaptersPlugin *plugin);
 static void totem_file_opened_result_cb (gpointer data, gpointer user_data);
 static void totem_file_closed_cb (TotemObject *totem, TotemChaptersPlugin *plugin);
@@ -151,7 +150,6 @@ totem_chapters_plugin_class_init (TotemChaptersPluginClass *klass)
 
 	object_class->set_property = set_property;
 	object_class->get_property = get_property;
-	object_class->finalize = totem_chapters_plugin_finalize;
 
 	g_object_class_override_property (object_class, PROP_OBJECT, "object");
 }
@@ -162,12 +160,6 @@ totem_chapters_plugin_init (TotemChaptersPlugin *plugin)
 	plugin->priv = TOTEM_CHAPTERS_PLUGIN_GET_PRIVATE (plugin);
 }
 
-static void
-totem_chapters_plugin_finalize (GObject *object)
-{
-	G_OBJECT_CLASS (totem_chapters_plugin_parent_class)->finalize (object);
-}
-
 static GdkPixbuf *
 get_chapter_pixbuf (GdkPixbuf *src)
 {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]