aboutsummaryrefslogtreecommitdiffstats
path: root/color_filters.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2006-10-02 23:01:33 +0000
committerUlf Lamping <ulf.lamping@web.de>2006-10-02 23:01:33 +0000
commit59d206d18e8b059239b4e52cdc30a8adb144b547 (patch)
treeb065af5c3cf5297acd2cc58184cf29f1ff14ef92 /color_filters.h
parentb2c8fb8f5584e06e2c642ef16f51afff12e389c5 (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
svn path=/trunk/; revision=19399
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'.