From 45dbd798eaa6468a5595568de2bbb8b3e3fde0ee Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 26 Jun 2000 19:01:39 +0000 Subject: Added a #include as this was needed (since we used 2000-06-26 Jeffrey Stedfast * filter-editor.c: Added a #include as this was needed (since we used the xml parser...) (druid_dialogue_clicked): Do we want to use struct filter_option or do we instead want to use struct filter_optionrule as we had before? Since the function we pass the data to expects filter_option, I suspect that that is what we want. * filter-format.h (filter_description_html_write): Renamed from description_html_write in order to match function name in filter-format.c * filter-druid.c (option_name_changed): Fixed a memory leak (Free'd a filter description list). * filter-arg-types.c (arg_folder_edit_values): Free'd GList data in argin->values. * filter-driver.c (filter_driver_set_rules): Added code to free an xmlDoc and some other data. * filter-arg.h: Add prototypes for filter_arg_write_html() and filter_arg_write_text(); * filter-arg-types.c: Lets see if we can't get rid of some of these warnings... (use some casts to make warnings go away) (arg_address_edit_value): Lets make sure that ad exists before looking at member data. svn path=/trunk/; revision=3741 --- filter/filter-arg.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'filter/filter-arg.h') diff --git a/filter/filter-arg.h b/filter/filter-arg.h index 7790123569..c7b038a996 100644 --- a/filter/filter-arg.h +++ b/filter/filter-arg.h @@ -72,6 +72,10 @@ FilterArg *filter_arg_clone(FilterArg *arg); void filter_arg_copy (FilterArg *dst, FilterArg *src); void filter_arg_value_add(FilterArg *a, void *v); +void filter_arg_write_html(FilterArg *arg, GtkHTML *html, + GtkHTMLStream *stream); +void filter_arg_write_text(FilterArg *arg, GString *string); + void filter_arg_edit_values(FilterArg *arg); int filter_arg_edit_value(FilterArg *arg, int index); -- cgit v1.2.3