aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gtk/compat_macros.h2
-rw-r--r--gtk/toolbar.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/gtk/compat_macros.h b/gtk/compat_macros.h
index 6a7edfa66c..ab0aec5d2a 100644
--- a/gtk/compat_macros.h
+++ b/gtk/compat_macros.h
@@ -206,7 +206,7 @@ gtk_signal_emit_stop_by_name(GTK_OBJECT(widget), name)
#define ETHEREAL_STOCK_DONT_SAVE "Continue without Saving"
#define ETHEREAL_STOCK_ABOUT "About"
#define ETHEREAL_STOCK_COLORIZE "Colorize"
-#define ETHEREAL_STOCK_AUTOSCROLL "Auto Scroll in Live Capture"
+#define ETHEREAL_STOCK_AUTOSCROLL "Auto Scroll"
#define ETHEREAL_STOCK_RESIZE_COLUMNS "Resize Columns"
#define ETHEREAL_STOCK_TIME "Time"
#define ETHEREAL_STOCK_INTERNET "Internet"
diff --git a/gtk/toolbar.c b/gtk/toolbar.c
index 2dd8d4589a..9f37d143e3 100644
--- a/gtk/toolbar.c
+++ b/gtk/toolbar.c
@@ -544,10 +544,10 @@ toolbar_new(void)
toolbar_append_separator(main_tb);
toolbar_toggle_button(colorize_button, window, main_tb,
- ETHEREAL_STOCK_CAPTURE_INTERFACES, "Colorize Packet List", colorize_24_xpm, colorize_toggle_cb, NULL);
+ "Colorize"/*ETHEREAL_STOCK_COLORIZE*/, "Colorize Packet List", colorize_24_xpm, colorize_toggle_cb, NULL);
#ifdef HAVE_LIBPCAP
toolbar_toggle_button(autoscroll_button, window, main_tb,
- ETHEREAL_STOCK_AUTOSCROLL, "Auto Scroll Packet List in Live Capture", autoscroll_24_xpm, auto_scroll_live_toggle_cb, NULL);
+ "Auto Scroll" /*ETHEREAL_STOCK_AUTOSCROLL*/, "Auto Scroll Packet List in Live Capture", autoscroll_24_xpm, auto_scroll_live_toggle_cb, NULL);
#endif
toolbar_append_separator(main_tb);