aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-10-13 11:15:11 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-10-13 11:15:11 +0000
commit5bfb661d232d1e913bc6162691b837acbb049dee (patch)
treef6f4e237e1e69a602e6858338f660f1f090a8d93 /gtk
parentfde95120d2b5b7ce466b7d9e3e06fe6a9b914fba (diff)
Add a wireshark file stock icon.
svn path=/trunk/; revision=34496
Diffstat (limited to 'gtk')
-rw-r--r--gtk/stock_icons.c6
-rw-r--r--gtk/stock_icons.h1
2 files changed, 5 insertions, 2 deletions
diff --git a/gtk/stock_icons.c b/gtk/stock_icons.c
index 42c2d55ca6..c22202d81a 100644
--- a/gtk/stock_icons.c
+++ b/gtk/stock_icons.c
@@ -76,7 +76,7 @@
#include "../image/toolbar/voip_flow_24.xpm"
#include "../image/toolbar/telephone_16.xpm"
#include "../image/toolbar/analyze_24.xpm"
-
+#include "../image/WiresharkDoc_24.xpm"
typedef struct stock_pixmap_tag{
const char * name;
@@ -157,7 +157,8 @@ void stock_icons_init(void) {
{ WIRESHARK_STOCK_VOIP_FLOW, "Flow", 0, 0, NULL },
{ WIRESHARK_STOCK_TELEPHONE, "Telephone", 0, 0, NULL },
{ WIRESHARK_STOCK_PREPARE_FILTER, "Prepare Filter", 0, 0, NULL },
- { WIRESHARK_STOCK_ANALYZE, "Analyze", 0, 0, NULL }
+ { WIRESHARK_STOCK_ANALYZE, "Analyze", 0, 0, NULL },
+ { WIRESHARK_STOCK_FILE, "File", 0, 0, NULL }
};
static const stock_pixmap_t pixmaps[] = {
@@ -213,6 +214,7 @@ void stock_icons_init(void) {
{ WIRESHARK_STOCK_TELEPHONE, telephone_16_xpm},
{ WIRESHARK_STOCK_PREPARE_FILTER, display_filter_24_xpm},
{ WIRESHARK_STOCK_ANALYZE, analyze_24_xpm},
+ { WIRESHARK_STOCK_FILE, WiresharkDoc_24_xpm},
{ NULL, NULL }
};
diff --git a/gtk/stock_icons.h b/gtk/stock_icons.h
index d7ab1617a8..1656095d6b 100644
--- a/gtk/stock_icons.h
+++ b/gtk/stock_icons.h
@@ -92,6 +92,7 @@
#define WIRESHARK_STOCK_TELEPHONE "Wireshark_Telephone"
#define WIRESHARK_STOCK_PREPARE_FILTER "Wireshark_Prepare_Filter"
#define WIRESHARK_STOCK_ANALYZE "Wireshark_Analyze"
+#define WIRESHARK_STOCK_FILE "Wireshark_File"
void stock_icons_init(void);