summaryrefslogtreecommitdiff
path: root/src/gui/gui-line.h
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2022-01-28 07:26:11 +0100
committerSébastien Helleu <flashcode@flashtux.org>2022-01-28 07:26:11 +0100
commit05a9457504675b373cfca3c6d1e5e5bd7645b96f (patch)
tree2bb8755b939b70f86fd41bc0d4091bb08d9b678a /src/gui/gui-line.h
parent311074077789f1d645c3d8c3df58f78a54412222 (diff)
downloadweechat-05a9457504675b373cfca3c6d1e5e5bd7645b96f.zip
core: move functions from gui-chat.c to gui-line.c
Functions moved and renamed: - gui_chat_build_string_prefix_message -> gui_line_build_string_prefix_message - gui_chat_build_string_message_tags -> gui_line_build_string_message_tags
Diffstat (limited to 'src/gui/gui-line.h')
-rw-r--r--src/gui/gui-line.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/gui-line.h b/src/gui/gui-line.h
index 1b6939080..ffc0a42ee 100644
--- a/src/gui/gui-line.h
+++ b/src/gui/gui-line.h
@@ -80,6 +80,8 @@ extern void gui_line_get_prefix_for_display (struct t_gui_line *line,
extern int gui_line_get_align (struct t_gui_buffer *buffer,
struct t_gui_line *line,
int with_suffix, int first_line);
+extern char *gui_line_build_string_prefix_message (struct t_gui_line *line);
+extern char *gui_line_build_string_message_tags (struct t_gui_line *line);
extern int gui_line_is_displayed (struct t_gui_line *line);
extern struct t_gui_line *gui_line_get_first_displayed (struct t_gui_buffer *buffer);
extern struct t_gui_line *gui_line_get_last_displayed (struct t_gui_buffer *buffer);