From d0d1c0e3d92f083304a152f633c4448b1975181a Mon Sep 17 00:00:00 2001 From: Not Zed Date: Mon, 9 Oct 2000 12:48:38 +0000 Subject: Remove the stupid on-demand cb shit. (rule_context_load): And here too. 2000-10-06 Not Zed * rule-context.c (load): Remove the stupid on-demand cb shit. (rule_context_load): And here too. svn path=/trunk/; revision=5797 --- filter/rule-context.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'filter/rule-context.h') diff --git a/filter/rule-context.h b/filter/rule-context.h index 27078adbcf..dfdca62f28 100644 --- a/filter/rule-context.h +++ b/filter/rule-context.h @@ -58,8 +58,7 @@ struct _RuleContextClass { GtkObjectClass parent_class; /* virtual methods */ - int (*load)(RuleContext *f, const char *system, const char *user, - RCRegisterFunc on_demand_cb, gpointer user_data); + int (*load)(RuleContext *f, const char *system, const char *user); int (*save)(RuleContext *f, const char *user); /* signals */ @@ -88,8 +87,7 @@ guint rule_context_get_type (void); RuleContext *rule_context_new (void); /* methods */ -int rule_context_load(RuleContext *f, const char *system, const char *user, - RCRegisterFunc on_demand_cb, gpointer user_data); +int rule_context_load(RuleContext *f, const char *system, const char *user); int rule_context_save(RuleContext *f, const char *user); void rule_context_add_part(RuleContext *f, FilterPart *new); -- cgit