From 3e86d108a314a067589e32b60d2f6374eae501b6 Mon Sep 17 00:00:00 2001 From: James Booth Date: Mon, 7 Oct 2013 01:39:05 +0100 Subject: [PATCH] Removed usages of ui_current_print_line from ui/core.c --- src/ui/core.c | 6 +++--- 1 file 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); } }