mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
Removed usages of ui_current_print_line from ui/core.c
This commit is contained in:
parent
067c26eeea
commit
3e86d108a3
@ -1280,7 +1280,7 @@ ui_status(void)
|
|||||||
if (pcontact != NULL) {
|
if (pcontact != NULL) {
|
||||||
win_show_contact(current, pcontact);
|
win_show_contact(current, pcontact);
|
||||||
} else {
|
} 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) {
|
if (pcontact != NULL) {
|
||||||
win_show_contact(current, pcontact);
|
win_show_contact(current, pcontact);
|
||||||
} else {
|
} else {
|
||||||
ui_current_print_line("Error getting contact info.");
|
win_print_line(current, '-', 0, "Error getting contact info.");
|
||||||
}
|
}
|
||||||
|
|
||||||
jid_destroy(jid);
|
jid_destroy(jid);
|
||||||
@ -1309,7 +1309,7 @@ ui_status_room(const char * const contact)
|
|||||||
if (pcontact != NULL) {
|
if (pcontact != NULL) {
|
||||||
win_show_contact(current, pcontact);
|
win_show_contact(current, pcontact);
|
||||||
} else {
|
} else {
|
||||||
ui_current_print_line("No such participant \"%s\" in room.", contact);
|
win_print_line(current, '-', 0, "No such participant \"%s\" in room.", contact);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user