diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-06-08 16:04:50 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-06-08 16:04:50 +0000 |
commit | 299d37a342cfd277bc48af546a5c20087a665415 (patch) | |
tree | 39fa05bcf89212c3f1aa22f7d6d81f606542e338 /src/gui/gui-common.c | |
parent | 6971faba651069df69394c8bd5e4560b24d50517 (diff) | |
download | weechat-299d37a342cfd277bc48af546a5c20087a665415.zip |
Added hotlist sort with new option "look_hotlist_sort" (task #5870)
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 60ccfcebb..1fde05d54 100644 --- a/src/gui/gui-common.c +++ b/src/gui/gui-common.c @@ -186,13 +186,13 @@ gui_add_to_line (t_gui_buffer *buffer, int type, time_t date, char *nick, char * buffer->notify_level) { if (buffer->last_line->line_with_highlight) - hotlist_add (HOTLIST_HIGHLIGHT, SERVER(buffer), buffer, 0); + hotlist_add (HOTLIST_HIGHLIGHT, NULL, SERVER(buffer), buffer, 0); else if (BUFFER_IS_PRIVATE(buffer) && (buffer->last_line->line_with_message)) - hotlist_add (HOTLIST_PRIVATE, SERVER(buffer), buffer, 0); + hotlist_add (HOTLIST_PRIVATE, NULL, SERVER(buffer), buffer, 0); else if (buffer->last_line->line_with_message) - hotlist_add (HOTLIST_MSG, SERVER(buffer), buffer, 0); + hotlist_add (HOTLIST_MSG, NULL, SERVER(buffer), buffer, 0); else - hotlist_add (HOTLIST_LOW, SERVER(buffer), buffer, 0); + hotlist_add (HOTLIST_LOW, NULL, SERVER(buffer), buffer, 0); gui_status_draw (gui_current_window->buffer, 1); } } |