[nautilus-actions] Remove no more used instance_init debug messages



commit d38e6b412dce5bde0c8c90fdde710d88501da5a7
Author: Pierre Wieser <pwieser trychlos org>
Date:   Sun Jan 16 01:15:39 2011 +0100

    Remove no more used instance_init debug messages

 ChangeLog                 |    3 +++
 src/core/na-object-id.c   |    6 ------
 src/core/na-object-item.c |    6 ------
 3 files changed, 3 insertions(+), 12 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 01c590d..5e3f62c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -25,6 +25,9 @@
 
 2011-01-15 Pierre Wieser <pwieser trychlos org>
 
+	* src/core/na-object-id.c:
+	* src/core/na-object-item.c: Remove no more used instance_init debug messages.
+
 	* src/core/na-data-boxed.c:
 	* src/core/na-gconf-monitor.c:
 	* src/core/na-io-provider.c:
diff --git a/src/core/na-object-id.c b/src/core/na-object-id.c
index df6e8d9..64ca258 100644
--- a/src/core/na-object-id.c
+++ b/src/core/na-object-id.c
@@ -125,16 +125,12 @@ class_init( NAObjectIdClass *klass )
 static void
 instance_init( GTypeInstance *instance, gpointer klass )
 {
-	static const gchar *thisfn = "na_object_id_instance_init";
 	NAObjectId *self;
 
 	g_return_if_fail( NA_IS_OBJECT_ID( instance ));
 
 	self = NA_OBJECT_ID( instance );
 
-	g_debug( "%s: instance=%p (%s), klass=%p",
-			thisfn, ( void * ) instance, G_OBJECT_TYPE_NAME( instance ), ( void * ) klass );
-
 	self->private = g_new0( NAObjectIdPrivate, 1 );
 }
 
@@ -157,8 +153,6 @@ instance_dispose( GObject *object )
 
 	if( !self->private->dispose_has_run ){
 
-		g_debug( "%s: object=%p (%s)", thisfn, ( void * ) object, G_OBJECT_TYPE_NAME( object ));
-
 		self->private->dispose_has_run = TRUE;
 
 		parent = na_object_get_parent( object );
diff --git a/src/core/na-object-item.c b/src/core/na-object-item.c
index 04aed0b..376a51a 100644
--- a/src/core/na-object-item.c
+++ b/src/core/na-object-item.c
@@ -144,16 +144,12 @@ class_init( NAObjectItemClass *klass )
 static void
 instance_init( GTypeInstance *instance, gpointer klass )
 {
-	static const gchar *thisfn = "na_object_item_instance_init";
 	NAObjectItem *self;
 
 	g_return_if_fail( NA_IS_OBJECT_ITEM( instance ));
 
 	self = NA_OBJECT_ITEM( instance );
 
-	g_debug( "%s: instance=%p (%s), klass=%p",
-			thisfn, ( void * ) instance, G_OBJECT_TYPE_NAME( instance ), ( void * ) klass );
-
 	self->private = g_new0( NAObjectItemPrivate, 1 );
 }
 
@@ -170,8 +166,6 @@ instance_dispose( GObject *object )
 
 	if( !self->private->dispose_has_run ){
 
-		g_debug( "%s: object=%p (%s)", thisfn, ( void * ) object, G_OBJECT_TYPE_NAME( object ));
-
 		self->private->dispose_has_run = TRUE;
 
 		children = na_object_get_items( self );



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