diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-08-15 21:35:34 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-08-15 21:35:34 +0000 |
commit | 75a756e8816a5890ae677fd0fdc185b5de318afd (patch) | |
tree | 2b9498147536957eb72797ceea669fa2163c37ff /gtk/menu.c | |
parent | a0d9061db62f4fc54e16166a7e2848a33d0a8f89 (diff) | |
download | wireshark-75a756e8816a5890ae677fd0fdc185b5de318afd.tar.gz wireshark-75a756e8816a5890ae677fd0fdc185b5de318afd.tar.bz2 wireshark-75a756e8816a5890ae677fd0fdc185b5de318afd.zip |
Rename the "Properties" pop-up menu item "Protocol Properties", to make
it clearer what properties it lets you edit. (Perhaps it should say
"Edit Protocol Properties", to make it even clearer?)
svn path=/trunk/; revision=2279
Diffstat (limited to 'gtk/menu.c')
-rw-r--r-- | gtk/menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/menu.c b/gtk/menu.c index 4aa5dce9a9..7b27ce8454 100644 --- a/gtk/menu.c +++ b/gtk/menu.c @@ -1,7 +1,7 @@ /* menu.c * Menu routines * - * $Id: menu.c,v 1.37 2000/08/15 21:03:55 deniel Exp $ + * $Id: menu.c,v 1.38 2000/08/15 21:35:34 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -158,7 +158,7 @@ static GtkItemFactoryEntry tree_view_menu_items[] = { {"/Match Selected", NULL, GTK_MENU_FUNC(match_selected_cb), 0, NULL}, {"/Resolve Name", NULL, GTK_MENU_FUNC(resolve_name_cb), 0, NULL}, - {"/Properties...", NULL, GTK_MENU_FUNC(properties_cb), 0, NULL}, + {"/Protocol Properties...", NULL, GTK_MENU_FUNC(properties_cb), 0, NULL}, {"/Follow TCP Stream", NULL, GTK_MENU_FUNC(follow_stream_cb), 0, NULL}, {"/Filters...", NULL, GTK_MENU_FUNC(filter_dialog_cb), 0, NULL}, {"/<separator>", NULL, NULL, 0, "<Separator>"}, @@ -363,5 +363,5 @@ set_menus_for_selected_tree_row(gboolean have_selected_tree) properties = prefs_is_registered_protocol(proto_registrar_get_abbrev(hfinfo->parent)); } } - set_menu_sensitivity("/Properties...", have_selected_tree && properties); + set_menu_sensitivity("/Protocol Properties...", have_selected_tree && properties); } |