[evolution-data-server] Remove source_extension_constructed().



commit ca2f6dd4369a6593bd23500f1e1cf736aa06fb1d
Author: Matthew Barnes <mbarnes redhat com>
Date:   Fri Jul 6 00:21:31 2012 -0400

    Remove source_extension_constructed().
    
    Was written before GObject implemented its own constructed() method.

 libedataserver/e-source-extension.c |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)
---
diff --git a/libedataserver/e-source-extension.c b/libedataserver/e-source-extension.c
index 330fe7d..1a42e83 100644
--- a/libedataserver/e-source-extension.c
+++ b/libedataserver/e-source-extension.c
@@ -129,14 +129,6 @@ source_extension_notify (GObject *object,
 }
 
 static void
-source_extension_constructed (GObject *object)
-{
-	/* This allows subclasses to chain up safely since GObject
-	 * does not implement this method, and we might want to do
-	 * something here in the future. */
-}
-
-static void
 e_source_extension_class_init (ESourceExtensionClass *class)
 {
 	GObjectClass *object_class;
@@ -148,7 +140,6 @@ e_source_extension_class_init (ESourceExtensionClass *class)
 	object_class->get_property = source_extension_get_property;
 	object_class->dispose = source_extension_dispose;
 	object_class->notify = source_extension_notify;
-	object_class->constructed = source_extension_constructed;
 
 	g_object_class_install_property (
 		object_class,



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