diff options
Diffstat (limited to 'src/statusbar.c')
-rwxr-xr-x | src/statusbar.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/statusbar.c b/src/statusbar.c index b2f299a16..22054b622 100755 --- a/src/statusbar.c +++ b/src/statusbar.c @@ -193,22 +193,3 @@ statusbar_set_progress (Statusbar *t, tmp); } } - -void -statusbar_set_message (Statusbar *s, - const char *message) -{ - char *tmp1, *tmp2; - - g_return_if_fail (message != NULL); - - tmp1 = ephy_string_strip_chr (message, '\r'); - tmp2 = ephy_string_strip_chr (tmp1, '\n'); - - gtk_statusbar_pop (GTK_STATUSBAR (s), 0); - gtk_statusbar_push (GTK_STATUSBAR (s), 0, tmp2); - - g_free (tmp1); - g_free (tmp2); -} - |