about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-10-07 01:39:05 +0100
committerJames Booth <boothj5@gmail.com>2013-10-07 01:39:05 +0100
commit3e86d108a314a067589e32b60d2f6374eae501b6 (patch)
treedbd2cd57e4f8464ebd7149a8710fd72e93259dbe
parent067c26eeea871fabeb2b475b8e6d3c7efe1d5180 (diff)
downloadprofani-tty-3e86d108a314a067589e32b60d2f6374eae501b6.tar.gz
Removed usages of ui_current_print_line from ui/core.c
-rw-r--r--src/ui/core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index 7374bda7..e436a4af 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -1280,7 +1280,7 @@ ui_status(void)
     if (pcontact != NULL) {
         win_show_contact(current, pcontact);
     } else {
-        ui_current_print_line("Error getting contact info.");
+        win_print_line(current, '-', 0, "Error getting contact info.");
     }
 }
 
@@ -1294,7 +1294,7 @@ ui_status_private(void)
     if (pcontact != NULL) {
         win_show_contact(current, pcontact);
     } else {
-        ui_current_print_line("Error getting contact info.");
+        win_print_line(current, '-', 0, "Error getting contact info.");
     }
 
     jid_destroy(jid);
@@ -1309,7 +1309,7 @@ ui_status_room(const char * const contact)
     if (pcontact != NULL) {
         win_show_contact(current, pcontact);
     } else {
-        ui_current_print_line("No such participant \"%s\" in room.", contact);
+        win_print_line(current, '-', 0, "No such participant \"%s\" in room.", contact);
     }
 }