aboutsummaryrefslogtreecommitdiffstats
path: root/epan/filter_expressions.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-02-06 18:22:54 +0000
committerGerald Combs <gerald@wireshark.org>2013-02-06 18:22:54 +0000
commit1c0deb0fc818252904878fe5419c75df3873a901 (patch)
treeb44a3986fa473e3c6872c21c1036abe9d573b225 /epan/filter_expressions.h
parentae527cbf109a054ba10e3e313fb42e0b2ec0f342 (diff)
Add Filter Expressions^WButton^WShortcut^WBookmark preferences.
Add comments noting that - We might want to do something different when the bookmark button is pressed. - The display filters (dfilters file) and gui.filter_expressions preferences should be merged. - Many buttons on Qt4 + OS X + unifiedTitleAndToolBarOnMac makes the main window really wide. Add a qstring_strdup convenience routine. Add "disabled" display filter edit icons. Fix up whitespace and descriptions in a couple of places. svn path=/trunk/; revision=47522
Diffstat (limited to 'epan/filter_expressions.h')
-rw-r--r--epan/filter_expressions.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/epan/filter_expressions.h b/epan/filter_expressions.h
index e9090c144b..60b051ff5c 100644
--- a/epan/filter_expressions.h
+++ b/epan/filter_expressions.h
@@ -25,8 +25,6 @@
#ifndef __FILTER_EXPRESSIONS_H__
#define __FILTER_EXPRESSIONS_H__
-#include "globals.h"
-
struct filter_expression {
gpointer button; /* Filter toolbar */
gchar *label;
@@ -34,7 +32,7 @@ struct filter_expression {
gint index;
gboolean enabled; /* Can be set to FALSE by Preferences Dialog */
- gboolean deleted; /* Can be set to TRUE by Preferences Dialog */
+ gboolean deleted; /* Can be set to TRUE by Preferences Dialog (GTK+ only) */
struct filter_expression *next;
};