diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-11-06 14:12:07 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-11-06 14:12:07 +0800 |
commit | e5cf0030a07d4e02ea11d69474c54d4156ba3c11 (patch) | |
tree | 316fb464a0f98a4f520b05bd5290dfc460e90475 /filter/rule-context.c | |
parent | 044348407ce4fe76da6e7de19838d311e99ba17b (diff) | |
download | gsoc2013-evolution-e5cf0030a07d4e02ea11d69474c54d4156ba3c11.tar.gz gsoc2013-evolution-e5cf0030a07d4e02ea11d69474c54d4156ba3c11.tar.zst gsoc2013-evolution-e5cf0030a07d4e02ea11d69474c54d4156ba3c11.zip |
use G_STRUCT_OFFSET instead of GTK_SIGNAL_OFFSET
svn path=/trunk/; revision=18584
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 2518d56e85..feae6702b1 100644 --- a/filter/rule-context.c +++ b/filter/rule-context.c @@ -114,7 +114,7 @@ rule_context_class_init (RuleContextClass *klass) g_signal_new ("rule_added", RULE_TYPE_CONTEXT, G_SIGNAL_RUN_LAST, - GTK_SIGNAL_OFFSET (RuleContextClass, rule_added), + G_STRUCT_OFFSET (RuleContextClass, rule_added), NULL, NULL, gtk_marshal_NONE__POINTER, @@ -124,7 +124,7 @@ rule_context_class_init (RuleContextClass *klass) g_signal_new ("rule_removed", RULE_TYPE_CONTEXT, G_SIGNAL_RUN_LAST, - GTK_SIGNAL_OFFSET (RuleContextClass, rule_removed), + G_STRUCT_OFFSET (RuleContextClass, rule_removed), gtk_marshal_NONE__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER); @@ -132,7 +132,7 @@ rule_context_class_init (RuleContextClass *klass) g_signal_new ("changed", RULE_TYPE_CONTEXT, G_SIGNAL_RUN_LAST, - GTK_SIGNAL_OFFSET (RuleContextClass, changed), + G_STRUCT_OFFSET (RuleContextClass, changed), gtk_marshal_NONE__NONE, G_TYPE_NONE, 0); } |