From 5fde0e012762b07e4955306b743afcf43fe237c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Wed, 13 Jan 2021 19:22:33 +0100 Subject: RichString_appendChr: add parameter to set attributes Allows to set attributes when padding process fields in non-wide ncurses mode. Closes: #475 --- RichString.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RichString.h') diff --git a/RichString.h b/RichString.h index 594db23c..73e78204 100644 --- a/RichString.h +++ b/RichString.h @@ -50,7 +50,7 @@ void RichString_prune(RichString* this); void RichString_setAttr(RichString* this, int attrs); -void RichString_appendChr(RichString* this, char c, int count); +void RichString_appendChr(RichString* this, int attrs, char c, int count); int RichString_appendWide(RichString* this, int attrs, const char* data); -- cgit v1.2.3