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 | |
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')
-rw-r--r-- | filter/ChangeLog | 8 | ||||
-rw-r--r-- | filter/filter-marshal.list | 2 | ||||
-rw-r--r-- | filter/filter-rule.c | 2 | ||||
-rw-r--r-- | filter/rule-context.c | 6 |
4 files changed, 12 insertions, 6 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 7801937c0c..c94953f74e 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,11 @@ +2007-09-27 Hiroyuki Ikezoe <poincare@ikezoe.net> + + ** Fix for bug #461195 + + * filter-marshal.list: Remove needless marshalers. + * filter-rule.c: + * filter-context.c: Use GObject's marshalers. + 2007-09-14 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #476231 diff --git a/filter/filter-marshal.list b/filter/filter-marshal.list index 9d6744db44..e69de29bb2 100644 --- a/filter/filter-marshal.list +++ b/filter/filter-marshal.list @@ -1,2 +0,0 @@ -NONE:NONE -NONE:POINTER diff --git a/filter/filter-rule.c b/filter/filter-rule.c index 9e2c79f10c..bceabcb17a 100644 --- a/filter/filter-rule.c +++ b/filter/filter-rule.c @@ -113,7 +113,7 @@ filter_rule_class_init (FilterRuleClass *klass) G_STRUCT_OFFSET (FilterRuleClass, changed), NULL, NULL, - filter_marshal_NONE__NONE, + g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } 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); } |