aboutsummaryrefslogtreecommitdiffstats
path: root/filter/rule-context.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-01-03 01:06:18 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-01-03 01:06:18 +0800
commit901d85f456d0dca9353ad2cea5b366f08e202fcf (patch)
treef7877491dca77b4f75bcb7c64fabd1308e88b59a /filter/rule-context.c
parent070543d8c2e39b9680af03eeea0c7248dfb8dc83 (diff)
downloadgsoc2013-evolution-901d85f456d0dca9353ad2cea5b366f08e202fcf.tar
gsoc2013-evolution-901d85f456d0dca9353ad2cea5b366f08e202fcf.tar.gz
gsoc2013-evolution-901d85f456d0dca9353ad2cea5b366f08e202fcf.tar.bz2
gsoc2013-evolution-901d85f456d0dca9353ad2cea5b366f08e202fcf.tar.lz
gsoc2013-evolution-901d85f456d0dca9353ad2cea5b366f08e202fcf.tar.xz
gsoc2013-evolution-901d85f456d0dca9353ad2cea5b366f08e202fcf.tar.zst
gsoc2013-evolution-901d85f456d0dca9353ad2cea5b366f08e202fcf.zip
Fixed to build with -DG_DISABLE_DEPRECATED and -DGTK_DISABLE_DEPRECATED
2003-01-02 Jeffrey Stedfast <fejj@ximian.com> Fixed to build with -DG_DISABLE_DEPRECATED and -DGTK_DISABLE_DEPRECATED svn path=/trunk/; revision=19202
Diffstat (limited to 'filter/rule-context.c')
-rw-r--r--filter/rule-context.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/filter/rule-context.c b/filter/rule-context.c
index bed9045ddb..4cf8071f5a 100644
--- a/filter/rule-context.c
+++ b/filter/rule-context.c
@@ -38,6 +38,7 @@
#include "rule-context.h"
#include "filter-rule.h"
+#include "filter-marshal.h"
#define d(x)
@@ -117,7 +118,7 @@ rule_context_class_init (RuleContextClass *klass)
G_STRUCT_OFFSET (RuleContextClass, rule_added),
NULL,
NULL,
- gtk_marshal_NONE__POINTER,
+ filter_marshal_NONE__POINTER,
G_TYPE_NONE, 1, G_TYPE_POINTER);
signals[RULE_REMOVED] =
@@ -127,7 +128,7 @@ rule_context_class_init (RuleContextClass *klass)
G_STRUCT_OFFSET (RuleContextClass, rule_removed),
NULL,
NULL,
- gtk_marshal_NONE__POINTER,
+ filter_marshal_NONE__POINTER,
G_TYPE_NONE, 1, G_TYPE_POINTER);
signals[CHANGED] =
@@ -137,7 +138,7 @@ rule_context_class_init (RuleContextClass *klass)
G_STRUCT_OFFSET (RuleContextClass, changed),
NULL,
NULL,
- gtk_marshal_NONE__NONE,
+ filter_marshal_NONE__NONE,
G_TYPE_NONE, 0);
}