Miscellaneous small code cleanups
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
13
src/utils.c
13
src/utils.c
@@ -160,15 +160,22 @@ warnbox (const char *msg)
|
||||
* Message texts for first line and second line are to be provided.
|
||||
*/
|
||||
void
|
||||
status_mesg (const char *mesg_line1, const char *mesg_line2)
|
||||
status_mesg (const char *msg1, const char *msg2)
|
||||
{
|
||||
wins_erase_status_bar ();
|
||||
custom_apply_attr (win[STA].p, ATTR_HIGHEST);
|
||||
mvwprintw (win[STA].p, 0, 0, mesg_line1);
|
||||
mvwprintw (win[STA].p, 1, 0, mesg_line2);
|
||||
mvwprintw (win[STA].p, 0, 0, msg1);
|
||||
mvwprintw (win[STA].p, 1, 0, msg2);
|
||||
custom_remove_attr (win[STA].p, ATTR_HIGHEST);
|
||||
}
|
||||
|
||||
/* Print a status message, followed by a "[y/n]" prompt. */
|
||||
void
|
||||
status_mesg_yesno (const char *msg)
|
||||
{
|
||||
status_mesg (msg, "[y/n] ");
|
||||
}
|
||||
|
||||
/* Erase part of a window. */
|
||||
void
|
||||
erase_window_part (WINDOW *win, int first_col, int first_row, int last_col,
|
||||
|
||||
Reference in New Issue
Block a user