Added missing space in front of new statusbar messages.

svn path=/trunk/; revision=24233
This commit is contained in:
Stig Bjørlykke 2008-01-31 20:00:45 +00:00
parent 9703c2bb75
commit 18fd58de40
1 changed files with 2 additions and 2 deletions

View File

@ -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");
}
}