about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-11-02 21:24:12 +0000
committerJames Booth <boothj5@gmail.com>2015-11-02 21:24:12 +0000
commiteece15d92ca8f022da31763f5a62b6f0b8c2805e (patch)
tree3c0c9d95a2bebb5048da70d7f9a63a39127ac7e9 /src
parent022d20bbdc69cc4831317ac3092310b86d8ca7d8 (diff)
downloadprofani-tty-eece15d92ca8f022da31763f5a62b6f0b8c2805e.tar.gz
Removed ui_statusbar_new
Diffstat (limited to 'src')
-rw-r--r--src/command/commands.c2
-rw-r--r--src/ui/core.c6
-rw-r--r--src/ui/ui.h1
3 files changed, 1 insertions, 8 deletions
diff --git a/src/command/commands.c b/src/command/commands.c
index 7c456a9b..f7965576 100644
--- a/src/command/commands.c
+++ b/src/command/commands.c
@@ -1467,7 +1467,7 @@ cmd_who(ProfWin *window, const char *const command, gchar **args)
     }
 
     if (window->type != WIN_CONSOLE && window->type != WIN_MUC) {
-        ui_statusbar_new(1);
+        status_bar_new(1);
     }
 
     return TRUE;
diff --git a/src/ui/core.c b/src/ui/core.c
index f7621ff3..6b154f64 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -1081,12 +1081,6 @@ ui_goodbye_title(void)
     if(result == -1) log_error("Error printing title on shutdown");
 }
 
-void
-ui_statusbar_new(const int win)
-{
-    status_bar_new(win);
-}
-
 static void
 _ui_draw_term_title(void)
 {
diff --git a/src/ui/ui.h b/src/ui/ui.h
index b52badfd..c93e6a81 100644
--- a/src/ui/ui.h
+++ b/src/ui/ui.h
@@ -127,7 +127,6 @@ void ui_prune_wins(void);
 void ui_auto_away(char *message, gint time, resource_presence_t res_presence);
 void ui_handle_login_account_success(ProfAccount *account, int secured);
 void ui_update_presence(const resource_presence_t resource_presence, const char *const message, const char *const show);
-void ui_statusbar_new(const int win);
 void ui_write(char *line, int offset);
 void ui_invalid_command_usage(const char *const cmd, void (*setting_func)(void));
 gboolean ui_win_has_unsaved_form(int num);