Don't return here - this is a void function. (rule_editor_set_source):

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.

svn path=/trunk/; revision=20429
This commit is contained in:
Jeffrey Stedfast
2003-03-20 15:52:00 +00:00
committed by Jeffrey Stedfast
parent 8aa06d36e0
commit 1bef6b2b8c
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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 */