]> git.0d.be Git - empathy.git/commitdiff
Do not add signal "process", it's added in generated code
authorXavier Claessens <xclaesse@src.gnome.org>
Fri, 11 Apr 2008 13:11:34 +0000 (13:11 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Fri, 11 Apr 2008 13:11:34 +0000 (13:11 +0000)
svn path=/trunk/; revision=921

libempathy/empathy-filter.c

index 4299073a4666a68bdbba761dad39a23958719d60..a5d0757d53bf8d858a371ebf73d8880c46716f7c 100644 (file)
@@ -28,7 +28,6 @@
 #include "empathy-filter.h"
 #include "empathy-debug.h"
 #include "empathy-utils.h"
-#include "empathy-marshal.h"
 
 #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
                       EMPATHY_TYPE_FILTER, EmpathyFilterPriv))
@@ -44,7 +43,6 @@ static void empathy_filter_init       (EmpathyFilter      *filter);
 static void filter_iface_init         (EmpSvcFilterClass  *klass);
 
 enum {
-       PROCESS,
        NEW_CHANNEL,
        LAST_SIGNAL
 };
@@ -120,16 +118,6 @@ empathy_filter_class_init (EmpathyFilterClass *klass)
                              G_TYPE_NONE,
                              1, TP_TYPE_CHANNEL);
 
-       signals[PROCESS] =
-               g_signal_new ("process",
-                             G_OBJECT_CLASS_TYPE (klass),
-                             G_SIGNAL_RUN_LAST,
-                             0,
-                             NULL, NULL,
-                             _empathy_marshal_VOID__UINT_BOOLEAN,
-                             G_TYPE_NONE,
-                             2, G_TYPE_UINT, G_TYPE_BOOLEAN);
-
        g_type_class_add_private (object_class, sizeof (EmpathyFilterPriv));
 }