aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-30 15:16:21 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-30 15:16:21 +0000
commitf83abaf58a0654b7c391b1c14a57b397dcb9ac37 (patch)
tree2756a60b6ff05d02b6d211ed334edd8cad1370b2
parentd8cffa8e58b7173a996de3eaf79750911ad43d1c (diff)
Added missing space in front of some statusbar messages.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24226 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--gtk/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/main.c b/gtk/main.c
index 3103b280e8..4d7237d4d3 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -865,7 +865,7 @@ tree_view_selection_changed_cb(GtkTreeSelection *sel, gpointer user_data _U_)
}
statusbar_pop_field_msg(); /* get rid of current help msg */
if (length) {
- help_str = g_strdup_printf("%s (%s)%s",
+ help_str = g_strdup_printf(" %s (%s)%s",
(has_blurb) ? finfo->hfinfo->blurb : finfo->hfinfo->name,
finfo->hfinfo->abbrev, len_str);
statusbar_push_field_msg(help_str);
@@ -1708,7 +1708,7 @@ main_cf_cb_live_capture_prepared(capture_options *capture_opts)
set_menus_for_capture_in_progress(TRUE);
/* update statusbar */
- statusbar_push_file_msg("Waiting for capture input data ...");
+ statusbar_push_file_msg(" Waiting for capture input data ...");
/* Don't set up main window for a capture file. */
main_set_for_capture_file(FALSE);