From 1bef6b2b8cd335f167deb690160c8fb9d4f06dd0 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 20 Mar 2003 15:52:00 +0000 Subject: Don't return here - this is a void function. (rule_editor_set_source): 2003-03-20 Jeffrey Stedfast * rule-editor.c (rule_editor_set_sensitive): Don't return here - this is a void function. (rule_editor_set_source): Same. svn path=/trunk/; revision=20429 --- filter/ChangeLog | 6 ++++++ filter/rule-editor.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/filter/ChangeLog b/filter/ChangeLog index ba8e61c74f..331b5cc86a 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,9 @@ +2003-03-20 Jeffrey Stedfast + + * rule-editor.c (rule_editor_set_sensitive): Don't return here - + this is a void function. + (rule_editor_set_source): Same. + 2003-03-18 Not Zed * rule-context.c (new_rule_response): use the same code as in diff --git a/filter/rule-editor.c b/filter/rule-editor.c index f353487420..3fe268ac61 100644 --- a/filter/rule-editor.c +++ b/filter/rule-editor.c @@ -178,14 +178,14 @@ rule_editor_new (RuleContext *rc, const char *source) void rule_editor_set_sensitive (RuleEditor *re) { - return RULE_EDITOR_GET_CLASS (re)->set_sensitive (re); + RULE_EDITOR_GET_CLASS (re)->set_sensitive (re); } /* used internally by implementations */ void rule_editor_set_source (RuleEditor *re, const char *source) { - return RULE_EDITOR_GET_CLASS (re)->set_source (re, source); + RULE_EDITOR_GET_CLASS (re)->set_source (re, source); } /* factory method for "add" button */ -- cgit v1.2.3