diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-01-28 07:26:11 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-01-28 07:26:11 +0100 |
commit | 05a9457504675b373cfca3c6d1e5e5bd7645b96f (patch) | |
tree | 2bb8755b939b70f86fd41bc0d4091bb08d9b678a /src/gui/curses/gui-curses-chat.c | |
parent | 311074077789f1d645c3d8c3df58f78a54412222 (diff) | |
download | weechat-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/curses/gui-curses-chat.c')
-rw-r--r-- | src/gui/curses/gui-curses-chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/curses/gui-curses-chat.c b/src/gui/curses/gui-curses-chat.c index a2cdb7800..a91fc549b 100644 --- a/src/gui/curses/gui-curses-chat.c +++ b/src/gui/curses/gui-curses-chat.c @@ -1421,7 +1421,7 @@ gui_chat_display_line (struct t_gui_window *window, struct t_gui_line *line, if (line->data->message && line->data->message[0]) { message_with_tags = (gui_chat_display_tags) ? - gui_chat_build_string_message_tags (line) : NULL; + gui_line_build_string_message_tags (line) : NULL; ptr_data = (message_with_tags) ? message_with_tags : line->data->message; message_with_search = NULL; |