aboutsummaryrefslogtreecommitdiffstats
path: root/colors.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-12-19 07:01:30 +0000
committerGuy Harris <guy@alum.mit.edu>1999-12-19 07:01:30 +0000
commit26e926e61448e5ae44b6af151bf231082c1d41d5 (patch)
tree912f49f0963136d5826bdd3e665726e6c14df3fd /colors.h
parentbcc9362c47cdf02e0bab474ffae25e1150674e9f (diff)
Add to the "color_filter_t" structure members to store the name and
filter string for the filter. Maintain a list of the "color_filter_t" structures for all color filters. svn path=/trunk/; revision=1357
Diffstat (limited to 'colors.h')
-rw-r--r--colors.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/colors.h b/colors.h
index 2155e46e57..da0af39116 100644
--- a/colors.h
+++ b/colors.h
@@ -1,7 +1,7 @@
/* colors.h
* Definitions for color structures and routines
*
- * $Id: colors.h,v 1.7 1999/11/30 05:32:58 guy Exp $
+ * $Id: colors.h,v 1.8 1999/12/19 07:01:30 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -49,6 +49,8 @@ extern GdkColor BLACK;
*/
typedef struct _color_filter {
+ gchar *filter_name;
+ gchar *filter_text;
GdkColor bg_color;
GdkColor fg_color;
dfilter *c_colorfilter;