aboutsummaryrefslogtreecommitdiffstats
path: root/color_filters.h
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-02 23:01:33 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-02 23:01:33 +0000
commitc1f695faee2cf9c9f86869d14c541fd3e6f6c560 (patch)
treeb065af5c3cf5297acd2cc58184cf29f1ff14ef92 /color_filters.h
parentc709618aa471992b461cc461c53c9834f2ab3303 (diff)
further code cleanup: don't use the term "marked" for the color filters, the right term is "selected". That caused me "concerns" wether the marked feature of the packet list was involved - which is actually not
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19399 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'color_filters.h')
-rw-r--r--color_filters.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/color_filters.h b/color_filters.h
index 361032fb6b..50e32e3a42 100644
--- a/color_filters.h
+++ b/color_filters.h
@@ -37,7 +37,7 @@ typedef struct _color_filter {
dfilter_t *c_colorfilter; /* compiled filter expression */
void *edit_dialog; /* if filter is being edited, dialog
* box for it */
- gboolean marked; /* set if the filter is marked in the color dialog box */
+ gboolean selected; /* set if the filter is selected in the color dialog box */
} color_filter_t;
/* List of all color filters. */
@@ -69,10 +69,10 @@ gboolean color_filters_import(gchar *path, gpointer arg);
/** Save filters (export) to some other filter file.
*
* @param path the path to the filter file
- * @param only_marked TRUE if only the marked filters should be saved
+ * @param only_selected TRUE if only the selected filters should be saved
* @return TRUE, if write succeeded
*/
-gboolean color_filters_export(gchar *path, gboolean only_marked);
+gboolean color_filters_export(gchar *path, gboolean only_selected);
/* Prime the epan_dissect_t with all the compiler
* color filters in 'color_filter_list'.