[gnio] Remove empty base_init function



commit ac69b7a6ea8a81cfcd44d3e4d018be6df4473843
Author: Alexander Larsson <alexl redhat com>
Date:   Thu May 7 09:49:20 2009 +0200

    Remove empty base_init function
---
 gio/ginitable.c |    9 +--------
 1 files changed, 1 insertions(+), 8 deletions(-)

diff --git a/gio/ginitable.c b/gio/ginitable.c
index 5b31eb2..5062bdd 100644
--- a/gio/ginitable.c
+++ b/gio/ginitable.c
@@ -49,8 +49,6 @@
  * an exception on failure.
  **/
 
-static void g_initable_base_init (gpointer g_class);
-
 GType
 g_initable_get_type (void)
 {
@@ -61,7 +59,7 @@ g_initable_get_type (void)
       const GTypeInfo initable_info =
       {
         sizeof (GInitableIface), /* class_size */
-	g_initable_base_init,   /* base_init */
+	NULL,           /* base_init */
 	NULL,		/* base_finalize */
 	NULL,
 	NULL,		/* class_finalize */
@@ -82,11 +80,6 @@ g_initable_get_type (void)
   return g_define_type_id__volatile;
 }
 
-static void
-g_initable_base_init (gpointer g_class)
-{
-}
-
 /**
  * g_initable_init:
  * @initable: a #GInitable.



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