aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/file_dlg.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-12-04 18:00:50 +0000
committerGerald Combs <gerald@wireshark.org>2012-12-04 18:00:50 +0000
commitc0c7a64d71811f76fa319930d1cf41078ac97c7f (patch)
tree794ce63f5584fa31552f7d76030156ba3106d19b /ui/gtk/file_dlg.c
parent9ca3f30f7589f9b508aae43f6f05f9fffdcc6813 (diff)
Replace GTK_STOCK_SAVE with WIRESHARK_STOCK_FILE in a few places,
including the GTK+ and Qt main toolbars. svn path=/trunk/; revision=46374
Diffstat (limited to 'ui/gtk/file_dlg.c')
-rw-r--r--ui/gtk/file_dlg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/gtk/file_dlg.c b/ui/gtk/file_dlg.c
index d34b150d35..83208a45b5 100644
--- a/ui/gtk/file_dlg.c
+++ b/ui/gtk/file_dlg.c
@@ -55,6 +55,7 @@
#include "ui/gtk/gui_utils.h"
#include "ui/gtk/file_dlg.h"
#include "ui/gtk/keys.h"
+#include "ui/gtk/stock_icons.h"
static gchar *last_open_dir = NULL;
@@ -91,7 +92,7 @@ file_selection_new(const gchar *title, file_selection_action_t action)
case FILE_SELECTION_SAVE:
gtk_action = GTK_FILE_CHOOSER_ACTION_SAVE;
- ok_button_text = GTK_STOCK_SAVE;
+ ok_button_text = WIRESHARK_STOCK_FILE;
break;
case FILE_SELECTION_WRITE_BROWSE: