about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-04-21 02:49:23 +0100
committerJames Booth <boothj5@gmail.com>2013-04-21 02:49:23 +0100
commitb2c08cfc43966a69dc544db119ee615a20728a10 (patch)
tree01d743505f743ff8e8fe542f46b3ad54966089da /src/ui
parentf110a8fe3baf4149cde34d6c8fd6a3230d6a21b1 (diff)
downloadprofani-tty-b2c08cfc43966a69dc544db119ee615a20728a10.tar.gz
Renamed cons_bad_show -> cons_show_error
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c2
-rw-r--r--src/ui/ui.h2
-rw-r--r--src/ui/windows.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index cdd8641d..81502599 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -121,7 +121,7 @@ cons_show(const char * const msg, ...)
 }
 
 void
-cons_bad_show(const char * const msg, ...)
+cons_show_error(const char * const msg, ...)
 {
     va_list arg;
     va_start(arg, msg);
diff --git a/src/ui/ui.h b/src/ui/ui.h
index 8a246432..e1ecb83b 100644
--- a/src/ui/ui.h
+++ b/src/ui/ui.h
@@ -146,7 +146,7 @@ void cons_show_account(ProfAccount *account);
 void cons_debug(const char * const msg, ...);
 void cons_show_time(void);
 void cons_show_word(const char * const word);
-void cons_bad_show(const char * const cmd, ...);
+void cons_show_error(const char * const cmd, ...);
 void cons_highlight_show(const char * const cmd);
 void cons_show_contacts(GSList * list);
 void cons_show_wins(void);
diff --git a/src/ui/windows.c b/src/ui/windows.c
index 1c08f943..cf4ac35c 100644
--- a/src/ui/windows.c
+++ b/src/ui/windows.c
@@ -353,7 +353,7 @@ ui_show_incoming_msg(const char * const from, const char * const message,
             _win_show_message(console->win, message);
         }
 
-        cons_bad_show("Windows all used, close a window to respond.");
+        cons_show("Windows all used, close a window to respond.");
 
         if (current_index == 0) {
            dirty = TRUE;