[vte] Remove signal ID from VteBgClass



commit feeda1671770daffa08a4235b94becdcbf9b825c
Author: Christian Persch <chpe gnome org>
Date:   Sun Apr 4 17:08:10 2010 +0200

    Remove signal ID from VteBgClass
    
    It's unused.

 src/vtebg.c |   16 ++++++++--------
 src/vtebg.h |    1 -
 2 files changed, 8 insertions(+), 9 deletions(-)
---
diff --git a/src/vtebg.c b/src/vtebg.c
index 13bc4fc..b136bc5 100644
--- a/src/vtebg.c
+++ b/src/vtebg.c
@@ -197,14 +197,14 @@ vte_bg_class_init(VteBgClass *klass)
 
 	gobject_class->finalize = vte_bg_finalize;
 
-	klass->root_pixmap_changed = g_signal_new("root-pixmap-changed",
-						  G_OBJECT_CLASS_TYPE(klass),
-						  G_SIGNAL_RUN_LAST,
-						  0,
-						  NULL,
-						  NULL,
-                                                  g_cclosure_marshal_VOID__VOID,
-						  G_TYPE_NONE, 0);
+	g_signal_new("root-pixmap-changed",
+                     G_OBJECT_CLASS_TYPE(klass),
+                     G_SIGNAL_RUN_LAST,
+                     0,
+                     NULL,
+                     NULL,
+                     g_cclosure_marshal_VOID__VOID,
+                     G_TYPE_NONE, 0);
 	g_type_class_add_private(klass, sizeof (VteBgPrivate));
 }
 
diff --git a/src/vtebg.h b/src/vtebg.h
index cc3e8ab..f9e5ef1 100644
--- a/src/vtebg.h
+++ b/src/vtebg.h
@@ -37,7 +37,6 @@ struct _VteBg {
 
 struct _VteBgClass {
 	GObjectClass parent_class;
-	guint root_pixmap_changed;
 };
 
 #define VTE_TYPE_BG vte_bg_get_type()



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