aboutsummaryrefslogtreecommitdiffstats
path: root/color.h
diff options
context:
space:
mode:
authorobiot <obiot@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-09 20:20:42 +0000
committerobiot <obiot@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-09 20:20:42 +0000
commit5660040f5f5c80753e4b5b4dbac11cbb85001feb (patch)
tree577b39cd69f14d65a2c78d5c37d27042182e94a6 /color.h
parent25683dc673afdba39cb473a6918379e02bd77045 (diff)
Part 2 of the "unmarking a packet matching a color filter does not apply
the color filter's colors" bug: keep a list of removed color filters, so there's no problem if we delete a color filter for which there are one or more packets that have its colors. Only get rid of the lists when they ar no longer needed. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9613 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'color.h')
-rw-r--r--color.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/color.h b/color.h
index cc71915cd0..4c99dde9d8 100644
--- a/color.h
+++ b/color.h
@@ -1,7 +1,7 @@
/* color.h
* Definitions for "toolkit-independent" colors
*
- * $Id: color.h,v 1.4 2003/08/18 21:27:07 sahlberg Exp $
+ * $Id: color.h,v 1.5 2004/01/09 20:19:34 obiot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -58,6 +58,7 @@ typedef struct _color_filter {
/* List of all color filters. */
extern GSList *filter_list;
+extern GSList *removed_filter_list;
void
filter_list_prime_edt(epan_dissect_t *edt);