aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/main_statusbar.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-08-01 19:18:49 +0000
committerGerald Combs <gerald@wireshark.org>2012-08-01 19:18:49 +0000
commit02894a0be8f12768f362d475f761d7e25c92ab9c (patch)
treeec52d52ed4c6338498a6418e782f2a7b586298d7 /ui/gtk/main_statusbar.c
parentecf26166fa54bc8d23e1cd9378bf8c333487c75a (diff)
Move utf8_entities.h to the "ui" directory. Separate packet information
items with MIDDLE DOTs. svn path=/trunk/; revision=44194
Diffstat (limited to 'ui/gtk/main_statusbar.c')
-rw-r--r--ui/gtk/main_statusbar.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/ui/gtk/main_statusbar.c b/ui/gtk/main_statusbar.c
index c1c27dfd65..0e5f39bdd0 100644
--- a/ui/gtk/main_statusbar.c
+++ b/ui/gtk/main_statusbar.c
@@ -48,6 +48,7 @@
#include "ui/main_statusbar.h"
#include "ui/recent.h"
+#include "ui/utf8_entities.h"
#include "ui/gtk/main.h"
#include "ui/gtk/main_statusbar_private.h"
@@ -492,18 +493,18 @@ packets_bar_update(void)
/* Do we have any packets? */
if(cfile.count) {
- g_string_printf(packets_str, " Packets: %u Displayed: %u Marked: %u",
+ g_string_printf(packets_str, " Packets: %u " UTF8_MIDDLE_DOT " Displayed: %u " UTF8_MIDDLE_DOT " Marked: %u",
cfile.count, cfile.displayed_count, cfile.marked_count);
if(cfile.drops_known) {
- g_string_append_printf(packets_str, " Dropped: %u", cfile.drops);
+ g_string_append_printf(packets_str, " " UTF8_MIDDLE_DOT " Dropped: %u", cfile.drops);
}
if(cfile.ignored_count > 0) {
- g_string_append_printf(packets_str, " Ignored: %u", cfile.ignored_count);
+ g_string_append_printf(packets_str, " " UTF8_MIDDLE_DOT " Ignored: %u", cfile.ignored_count);
}
if(!cfile.is_tempfile){
/* Loading an existing file */
gulong computed_elapsed = cf_get_computed_elapsed();
- g_string_append_printf(packets_str, " Load time: %lu:%02lu.%03lu",
+ g_string_append_printf(packets_str, " " UTF8_MIDDLE_DOT " Load time: %lu:%02lu.%03lu",
computed_elapsed/60000,
computed_elapsed%60000/1000,
computed_elapsed%1000);