diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2007-09-28 04:08:55 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-09-28 04:08:55 +0800 |
commit | e2e5e8d754f24a9f5c1ed0434c83dcd486a356eb (patch) | |
tree | 1b85999b0475986f41f1f27abbd24d4a89dead3f /filter/rule-context.c | |
parent | 37c142d956ca60725b1e989e95860e185156f5e9 (diff) | |
download | gsoc2013-evolution-e2e5e8d754f24a9f5c1ed0434c83dcd486a356eb.tar.gz gsoc2013-evolution-e2e5e8d754f24a9f5c1ed0434c83dcd486a356eb.tar.zst gsoc2013-evolution-e2e5e8d754f24a9f5c1ed0434c83dcd486a356eb.zip |
Fix for bug #461195 from Hiroyuki Ikezoe.
Use GObject's marshalers whenever possible.
svn path=/trunk/; revision=34324
Diffstat (limited to 'filter/rule-context.c')
-rw-r--r-- | filter/rule-context.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/rule-context.c b/filter/rule-context.c index 33f69a3925..55d53bc078 100644 --- a/filter/rule-context.c +++ b/filter/rule-context.c @@ -133,7 +133,7 @@ rule_context_class_init(RuleContextClass *klass) G_STRUCT_OFFSET(RuleContextClass, rule_added), NULL, NULL, - filter_marshal_NONE__POINTER, + g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER); signals[RULE_REMOVED] = @@ -143,7 +143,7 @@ rule_context_class_init(RuleContextClass *klass) G_STRUCT_OFFSET(RuleContextClass, rule_removed), NULL, NULL, - filter_marshal_NONE__POINTER, + g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER); signals[CHANGED] = @@ -153,7 +153,7 @@ rule_context_class_init(RuleContextClass *klass) G_STRUCT_OFFSET(RuleContextClass, changed), NULL, NULL, - filter_marshal_NONE__NONE, + g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } |