aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-03-19 19:06:08 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-03-19 19:06:08 +0000
commit6c8482f286b9d0987cc9965f8c1208c6c43b5b13 (patch)
treefb354ac22905a82e78dbdb7d776c787a60885c30 /gtk
parent6a0bf13c458c9a08c62417b9e8944abf558f53e2 (diff)
Move request packets above (before) response ones, this seems to be more natural.
Use a single HTTP submenu instead of two menu items with an entry and a submenu svn path=/trunk/; revision=13814
Diffstat (limited to 'gtk')
-rw-r--r--gtk/http_stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/http_stat.c b/gtk/http_stat.c
index d034c98ab3..195e12898c 100644
--- a/gtk/http_stat.c
+++ b/gtk/http_stat.c
@@ -407,10 +407,10 @@ gtk_httpstat_init(char *optarg)
if(filter){
sp->filter=g_strdup(filter);
- title=g_strdup_printf("HTTP statistics with filter: %s", filter);
+ title=g_strdup_printf("HTTP Packet Counter with filter: %s", filter);
} else {
sp->filter=NULL;
- title=g_strdup("HTTP statistics");
+ title=g_strdup("HTTP Packet Counter");
}
gtk_window_set_title(GTK_WINDOW(sp->win), title);
@@ -517,6 +517,6 @@ register_tap_listener_gtkhttpstat(void)
{
register_ethereal_tap("http,stat", gtk_httpstat_init);
- register_tap_menu_item("HTTP", REGISTER_TAP_GROUP_NONE,
+ register_tap_menu_item("HTTP/Packet Counter", REGISTER_TAP_GROUP_NONE,
gtk_tap_dfilter_dlg_cb, NULL, NULL, &(http_stat_dlg));
}