diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:34 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:34 +0800 |
commit | 86b1cd7924f9436c5060787b3025ff5b25679e82 (patch) | |
tree | 22c6f0d83a2cf3c0afb07280b64c09ccf38cf2a9 | |
parent | 79940541f11686fe8c606b9647c113f26bf39f8f (diff) | |
download | gsoc2013-empathy-86b1cd7924f9436c5060787b3025ff5b25679e82.tar gsoc2013-empathy-86b1cd7924f9436c5060787b3025ff5b25679e82.tar.gz gsoc2013-empathy-86b1cd7924f9436c5060787b3025ff5b25679e82.tar.bz2 gsoc2013-empathy-86b1cd7924f9436c5060787b3025ff5b25679e82.tar.lz gsoc2013-empathy-86b1cd7924f9436c5060787b3025ff5b25679e82.tar.xz gsoc2013-empathy-86b1cd7924f9436c5060787b3025ff5b25679e82.tar.zst gsoc2013-empathy-86b1cd7924f9436c5060787b3025ff5b25679e82.zip |
Do not add signal "process", it's added in generated code
svn path=/trunk/; revision=921
-rw-r--r-- | libempathy/empathy-filter.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libempathy/empathy-filter.c b/libempathy/empathy-filter.c index 4299073a4..a5d0757d5 100644 --- a/libempathy/empathy-filter.c +++ b/libempathy/empathy-filter.c @@ -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)); } |