diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-05-26 02:33:37 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-05-26 02:33:37 +0000 |
commit | 3aaf65db46a1afc054911564f12a45ec2af63274 (patch) | |
tree | c4ff3a097014010affe77a91c10b712a833d8b05 /gtk | |
parent | 8d492fc7e1da804e7d258895559668a0a3074726 (diff) | |
download | wireshark-3aaf65db46a1afc054911564f12a45ec2af63274.tar.gz wireshark-3aaf65db46a1afc054911564f12a45ec2af63274.tar.bz2 wireshark-3aaf65db46a1afc054911564f12a45ec2af63274.zip |
Don't capitalize "Filter" in "Display Filter" in the "Find" dialog box,
just as we don't capitalize "value" in "Hex value" in the same set of
radio buttons.
svn path=/trunk/; revision=11002
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/find_dlg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/find_dlg.c b/gtk/find_dlg.c index 3029291269..0a81406cc7 100644 --- a/gtk/find_dlg.c +++ b/gtk/find_dlg.c @@ -1,7 +1,7 @@ /* find_dlg.c * Routines for "find frame" window * - * $Id: find_dlg.c,v 1.51 2004/04/15 23:28:11 guy Exp $ + * $Id: find_dlg.c,v 1.52 2004/05/26 02:33:37 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -182,7 +182,7 @@ find_frame_cb(GtkWidget *w _U_, gpointer d _U_) /* Filter */ filter_rb = RADIO_BUTTON_NEW_WITH_MNEMONIC(NULL, - "_Display Filter", accel_group); + "_Display filter", accel_group); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(filter_rb), !cfile.hex && !cfile.string); gtk_box_pack_start(GTK_BOX(find_type_hb), filter_rb, FALSE, FALSE, 0); gtk_tooltips_set_tip (tooltips, filter_rb, ("Search for data by display filter syntax.\ne.g. ip.addr==10.1.1.1"), NULL); |