aboutsummaryrefslogtreecommitdiffstats
path: root/filters.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-04 00:45:39 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-04 00:45:39 +0000
commit64bc566ea87ea13d92bf505ed17245e0d18eae69 (patch)
tree6ce663d9714ee34c06a81a25dbc833864b67ea98 /filters.h
parent78191a09b5cd5840a8cc94879094f63b808ba1e8 (diff)
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
Diffstat (limited to 'filters.h')
-rw-r--r--filters.h6
1 files changed, 3 insertions, 3 deletions
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 <gerald@zing.org>
@@ -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.