summaryrefslogtreecommitdiff
path: root/ui/gtk/prefs_column.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-06-03 20:34:50 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-06-03 20:34:50 +0000
commit27872a9324d20d7b2ffd467ee81c4980d2cbb8a6 (patch)
treebfcd79998659c5ec22aeea40e97996da99ff0858 /ui/gtk/prefs_column.c
parenta0823d82c9d87b21550f518050646f31366ef5b8 (diff)
downloadwireshark-27872a9324d20d7b2ffd467ee81c4980d2cbb8a6.tar.gz
Apply the same tooltip for the text entry as for the updated label tooltip in r49726, but with a typo fix: "thefield" -> "the field".
svn path=/trunk/; revision=49727
Diffstat (limited to 'ui/gtk/prefs_column.c')
-rw-r--r--ui/gtk/prefs_column.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/gtk/prefs_column.c b/ui/gtk/prefs_column.c
index ccc5839cce..1f84167243 100644
--- a/ui/gtk/prefs_column.c
+++ b/ui/gtk/prefs_column.c
@@ -267,7 +267,7 @@ column_prefs_show(GtkWidget *prefs_window) {
ws_gtk_grid_attach_extended(GTK_GRID(grid), field_lb, 0, 1, 1, 1, (GtkAttachOptions)(GTK_EXPAND|GTK_FILL), (GtkAttachOptions)0, 0, 0);
gtk_widget_set_sensitive(field_lb, FALSE);
gtk_widget_set_tooltip_text(field_lb,
- "Display filter field name to show when thefield type is \"Custom\".");
+ "Display filter field name to show when the field type is \"Custom\".");
gtk_widget_show(field_lb);
field_te = gtk_entry_new();
@@ -287,8 +287,7 @@ column_prefs_show(GtkWidget *prefs_window) {
ws_gtk_grid_attach_extended(GTK_GRID(grid), field_te, 1, 1, 1, 1, (GtkAttachOptions)(GTK_EXPAND|GTK_FILL), (GtkAttachOptions)0, 0, 0);
gtk_widget_set_sensitive(field_te, FALSE);
gtk_widget_set_tooltip_text(field_te,
- "Field name used when field type is \"Custom\". "
- "This string has the same syntax as a display filter string.");
+ "Display filter field name to show when the field type is \"Custom\".");
gtk_widget_show(field_te);
occurrence_lb = gtk_label_new("Field occurrence:");