aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-02-01 22:28:58 +0000
committerGuy Harris <guy@alum.mit.edu>2001-02-01 22:28:58 +0000
commitbf4d3052e872f5ead20591431405816d76b7ef2f (patch)
treebdd12d44c03e666a1455a7f3cc435476df367112
parente7d46da0dd1d8c02e75df8f232cfb8c7f0efec5b (diff)
Use the pretty name for the type, not the internal name, in the help
dialog for display filter fields. svn path=/trunk/; revision=2975
-rw-r--r--gtk/help_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/help_dlg.c b/gtk/help_dlg.c
index 03deb5ffb2..0fc763fdfb 100644
--- a/gtk/help_dlg.c
+++ b/gtk/help_dlg.c
@@ -1,6 +1,6 @@
/* help_dlg.c
*
- * $Id: help_dlg.c,v 1.13 2001/02/01 20:21:21 gram Exp $
+ * $Id: help_dlg.c,v 1.14 2001/02/01 22:28:58 guy Exp $
*
* Laurent Deniel <deniel@worldnet.fr>
*
@@ -378,7 +378,7 @@ static void set_help_text(GtkWidget *w, help_type_t type)
nb_lines += 2;
} else {
- type_name = ftype_name(hfinfo->type);
+ type_name = ftype_pretty_name(hfinfo->type);
snprintf(buffer, BUFF_LEN, "%s%s%s%s(%s)\n",
hfinfo->abbrev,
&blanks[B_LEN - (maxlen - strlen(hfinfo->abbrev)) - 2],