aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-01-31 20:00:45 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-01-31 20:00:45 +0000
commit18fd58de40a49903766bfabab85340ec412f594e (patch)
tree322160be35a05f391b97bcc466aee488e6d01a79 /gtk
parent9703c2bb75f8498f547c5a66b0c0aa8d922668ba (diff)
Added missing space in front of new statusbar messages.
svn path=/trunk/; revision=24233
Diffstat (limited to 'gtk')
-rw-r--r--gtk/filter_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/filter_dlg.c b/gtk/filter_dlg.c
index 7bc497c170..b8779cb635 100644
--- a/gtk/filter_dlg.c
+++ b/gtk/filter_dlg.c
@@ -1523,7 +1523,7 @@ filter_te_syntax_check_cb(GtkWidget *w)
* We're being lazy and only printing the first "problem" token.
* Would it be better to print all of them?
*/
- msg = g_strdup_printf("\"%s\" may have unexpected results.",
+ msg = g_strdup_printf(" \"%s\" may have unexpected results",
(char *) g_ptr_array_index(depr, 0));
statusbar_push_filter_msg(msg);
g_free(msg);
@@ -1532,7 +1532,7 @@ filter_te_syntax_check_cb(GtkWidget *w)
}
} else {
colorize_filter_te_as_invalid(w);
- statusbar_push_filter_msg("Invalid filter");
+ statusbar_push_filter_msg(" Invalid filter");
}
}