aboutsummaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
Diffstat (limited to 'filter')
-rw-r--r--filter/ChangeLog6
-rw-r--r--filter/rule-editor.c4
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 <fejj@ximian.com>
+
+ * 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 <NotZed@Ximian.com>
* 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 */