summaryrefslogtreecommitdiff
path: root/ui/filters.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-06-03 16:26:00 -0700
committerGerald Combs <gerald@wireshark.org>2015-06-05 19:19:46 +0000
commitc2b713c0935de91f07faf0674dbb024391531a90 (patch)
tree77242b065cf28f40ec0d3fb59df22b18efabe171 /ui/filters.h
parent198ef94073326ae7f75ce02784e797e1e0fd0fd0 (diff)
downloadwireshark-c2b713c0935de91f07faf0674dbb024391531a90.tar.gz
Qt: Add the capture and display filter dialog.
Use a single overloaded dialog, similar to the GTK+ UI. Change-Id: If85db14a7101770f115bef725f5145e0010c518d Reviewed-on: https://code.wireshark.org/review/8776 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/filters.h')
-rw-r--r--ui/filters.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/filters.h b/ui/filters.h
index 330150f515..b63ddca2ba 100644
--- a/ui/filters.h
+++ b/ui/filters.h
@@ -33,8 +33,8 @@ extern "C" {
typedef enum {
CFILTER_LIST, /* capture filter list - saved */
DFILTER_LIST, /* display filter list - saved */
- CFILTER_EDITED_LIST, /* capture filter list - currently edited */
- DFILTER_EDITED_LIST /* display filter list - currently edited */
+ CFILTER_EDITED_LIST, /* capture filter list - currently edited. GTK+ only. */
+ DFILTER_EDITED_LIST /* display filter list - currently edited. GTK+ only. */
} filter_list_type_t;
/*
@@ -85,7 +85,7 @@ void save_filter_list(filter_list_type_t list_type, char **pref_path_return,
int *errno_return);
/*
- * Clone the filter list so it can be edited.
+ * Clone the filter list so it can be edited. GTK+ only.
*/
void copy_filter_list(filter_list_type_t dest_type, filter_list_type_t src_type);