aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_info_dlg.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2003-11-28 00:44:21 +0000
committerUlf Lamping <ulf.lamping@web.de>2003-11-28 00:44:21 +0000
commit390f20ea6b204d8d6fd3a147edb328d1c55b35bf (patch)
treee3254a4e688b6e9e6db3581d483ef8ef0ca0a119 /gtk/capture_info_dlg.c
parentcd01ca6cb034c64b07e0d7915b5b5e4a7f2da1d1 (diff)
label changed from "Portions" to "% of total" as suggested by Guy
svn path=/trunk/; revision=9111
Diffstat (limited to 'gtk/capture_info_dlg.c')
-rw-r--r--gtk/capture_info_dlg.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/capture_info_dlg.c b/gtk/capture_info_dlg.c
index 4162b52d37..114ae413c4 100644
--- a/gtk/capture_info_dlg.c
+++ b/gtk/capture_info_dlg.c
@@ -1,7 +1,7 @@
/* capture_info_dlg.c
* Routines for packet capture info dialog
*
- * $Id: capture_info_dlg.c,v 1.4 2003/11/18 06:06:41 ulfl Exp $
+ * $Id: capture_info_dlg.c,v 1.5 2003/11/28 00:44:21 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -152,7 +152,7 @@ capture_info *cinfo)
/* do not build a progress bar for the "total" row */
/* (as this could suggest a "buffer full" to the user) */
/* simply put a label here */
- info->counts[i].percent_pb = gtk_label_new("Portions");
+ info->counts[i].percent_pb = gtk_label_new("% of total");
} else {
/* build a progress bar in the other rows */
info->counts[i].percent_pb = gtk_progress_bar_new();
@@ -170,10 +170,10 @@ capture_info *cinfo)
info->counts[i].label, 0, 1, i, i + 1);
gtk_table_attach_defaults(GTK_TABLE(counts_tb),
info->counts[i].value_lb, 1, 2, i, i + 1);
- gtk_table_attach_defaults(GTK_TABLE(counts_tb),
- info->counts[i].percent_pb, 2, 3, i, i + 1);
- gtk_table_attach_defaults(GTK_TABLE(counts_tb),
- info->counts[i].percent_lb, 3, 4, i, i + 1);
+ gtk_table_attach_defaults(GTK_TABLE(counts_tb),
+ info->counts[i].percent_pb, 2, 3, i, i + 1);
+ gtk_table_attach_defaults(GTK_TABLE(counts_tb),
+ info->counts[i].percent_lb, 3, 4, i, i + 1);
gtk_widget_show(info->counts[i].label);
gtk_widget_show(info->counts[i].value_lb);