diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-08-20 22:28:31 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-08-20 22:28:31 +0000 |
commit | 1f801ff07964a9c2d605a97715b5fea0aafd078c (patch) | |
tree | c09618afaca5bb6f8de939baf1d2383afc8360af /src/gui/gui-common.c | |
parent | 0d2afafbd02c3a8a847f584b793b84b612684011 (diff) | |
download | weechat-1f801ff07964a9c2d605a97715b5fea0aafd078c.zip |
Added hotlist in session file when using /upgrade command (task #5449)
Diffstat (limited to 'src/gui/gui-common.c')
-rw-r--r-- | src/gui/gui-common.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/gui-common.c b/src/gui/gui-common.c index f01e07dc7..edf0541b2 100644 --- a/src/gui/gui-common.c +++ b/src/gui/gui-common.c @@ -180,13 +180,13 @@ gui_add_to_line (t_gui_buffer *buffer, int type, char *nick, char *message) buffer->notify_level) { if (buffer->last_line->line_with_highlight) - hotlist_add (HOTLIST_HIGHLIGHT, SERVER(buffer), buffer); + hotlist_add (HOTLIST_HIGHLIGHT, SERVER(buffer), buffer, 0); else if (BUFFER_IS_PRIVATE(buffer) && (buffer->last_line->line_with_message)) - hotlist_add (HOTLIST_PRIVATE, SERVER(buffer), buffer); + hotlist_add (HOTLIST_PRIVATE, SERVER(buffer), buffer, 0); else if (buffer->last_line->line_with_message) - hotlist_add (HOTLIST_MSG, SERVER(buffer), buffer); + hotlist_add (HOTLIST_MSG, SERVER(buffer), buffer, 0); else - hotlist_add (HOTLIST_LOW, SERVER(buffer), buffer); + hotlist_add (HOTLIST_LOW, SERVER(buffer), buffer, 0); gui_status_draw (gui_current_window->buffer, 1); } } |