From 64bc566ea87ea13d92bf505ed17245e0d18eae69 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Thu, 4 Dec 2003 00:45:39 +0000 Subject: In GTK+ 2.x, "gtk_entry_get_text()" returns a "const gchar *"; assign its value to pointer-to-const variables. svn path=/trunk/; revision=9161 --- filters.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'filters.h') diff --git a/filters.h b/filters.h index 5569d6226a..cbea1b9c56 100644 --- a/filters.h +++ b/filters.h @@ -1,7 +1,7 @@ /* filters.c * Declarations of routines for reading and writing the filters file. * - * $Id: filters.h,v 1.3 2002/08/28 21:00:06 jmayer Exp $ + * $Id: filters.h,v 1.4 2003/12/04 00:45:37 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -59,8 +59,8 @@ GList *get_filter_list_first(filter_list_type_t list); * Add a new filter to the end of a list. * Returns a pointer to the newly-added entry. */ -GList *add_to_filter_list(filter_list_type_t list, char *name, - char *expression); +GList *add_to_filter_list(filter_list_type_t list, const char *name, + const char *expression); /* * Remove a filter from a list. -- cgit v1.2.3