diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-17 19:44:39 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-17 19:44:39 +0100 |
commit | 3e1d811761887ca6c234e7b369febdf3d1710ae5 (patch) | |
tree | 74c538da60792008836f3d496728139dddebb3d0 /src/gui/gui-completion.h | |
parent | a290589f7cb3c4d59afa1a3a9a67f0b7eda4720a (diff) | |
download | weechat-3e1d811761887ca6c234e7b369febdf3d1710ae5.zip |
core: fix refresh of item "completion" (bug #38214) (patch from Nils Görs)
The item is now cleared after any action that is changing content of command
line and after switch of buffer.
Diffstat (limited to 'src/gui/gui-completion.h')
-rw-r--r-- | src/gui/gui-completion.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/gui-completion.h b/src/gui/gui-completion.h index 6c2b88fdd..1ab6740a6 100644 --- a/src/gui/gui-completion.h +++ b/src/gui/gui-completion.h @@ -68,8 +68,7 @@ struct t_gui_completion extern void gui_completion_buffer_init (struct t_gui_completion *completion, struct t_gui_buffer *buffer); extern void gui_completion_free (struct t_gui_completion *completion); -extern void gui_completion_stop (struct t_gui_completion *completion, - int remove_partial_completion_list); +extern void gui_completion_stop (struct t_gui_completion *completion); extern void gui_completion_list_add (struct t_gui_completion *completion, const char *word, int nick_completion, const char *where); |