aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/stock_icons.c
diff options
context:
space:
mode:
authorrbalint <rbalint@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-27 02:42:43 +0000
committerrbalint <rbalint@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-27 02:42:43 +0000
commitabd394c44f66fd097d0f7be58554af4500516938 (patch)
treef915a0106a7f087de275dfe1a5b50906fcdf2530 /gtk/stock_icons.c
parent0bce791b66fbca7753029ccfda3b530df78bb5e3 (diff)
Change button label to "Quit without Saving" from "Continue without Saving"
when exiting Wireshark and having an open, not yet saved capture file. This fixes bug 1427. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28502 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/stock_icons.c')
-rw-r--r--gtk/stock_icons.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/stock_icons.c b/gtk/stock_icons.c
index 8850ee0b76..6720614e45 100644
--- a/gtk/stock_icons.c
+++ b/gtk/stock_icons.c
@@ -113,6 +113,7 @@ void stock_icons_init(void) {
{ WIRESHARK_STOCK_APPLY_EXPRESSION, "App_ly" , 0, 0, NULL },
{ WIRESHARK_STOCK_SAVE_ALL, "Save A_ll", 0, 0, NULL },
{ WIRESHARK_STOCK_DONT_SAVE, "Continue _without Saving", 0, 0, NULL },
+ { WIRESHARK_STOCK_QUIT_DONT_SAVE, "Quit _without Saving", 0, 0, NULL },
{ WIRESHARK_STOCK_ABOUT, "_About", 0, 0, NULL },
{ WIRESHARK_STOCK_COLORIZE, "_Colorize", 0, 0, NULL },
{ WIRESHARK_STOCK_AUTOSCROLL, "_Auto Scroll in Live Capture", 0, 0, NULL },
@@ -239,6 +240,7 @@ void stock_icons_init(void) {
gtk_icon_factory_add(factory, WIRESHARK_STOCK_APPLY_EXPRESSION, icon_set);
icon_set = gtk_icon_factory_lookup_default(GTK_STOCK_CLEAR);
gtk_icon_factory_add(factory, WIRESHARK_STOCK_DONT_SAVE, icon_set);
+ gtk_icon_factory_add(factory, WIRESHARK_STOCK_QUIT_DONT_SAVE, icon_set);
icon_set = gtk_icon_factory_lookup_default(GTK_STOCK_SAVE);
gtk_icon_factory_add(factory, WIRESHARK_STOCK_SAVE_ALL, icon_set); /* XXX: needs a better icon */
icon_set = gtk_icon_factory_lookup_default(GTK_STOCK_CLOSE);