From 4c775291c0a4a9323b4180242095b13a5b5c14eb Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 16 Oct 2022 16:06:48 +0200 Subject: [PATCH] [color] Missing declaration --- src/bfu/text.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/bfu/text.h b/src/bfu/text.h index 67520d78..9225381a 100644 --- a/src/bfu/text.h +++ b/src/bfu/text.h @@ -51,10 +51,11 @@ void add_dlg_text(struct dialog *dlg, char *text, extern const struct widget_ops text_ops; -void dlg_format_text_do_node(struct dialog_data *dlg_data, - const char *text, int x, int *y, int w, int *rw, - unsigned int scolor_node, format_align_T align, int format_only); - +void dlg_format_text_do(struct dialog_data *dlg_data, + const char *text, + int x, int *y, int width, int *real_width, + struct color_pair *color, format_align_T align, + int format_only); void dlg_format_text(struct dialog_data *dlg_data, struct widget_data *widget_data,