diff options
author | Simmo Saan <simmo.saan@gmail.com> | 2017-06-03 15:04:50 +0300 |
---|---|---|
committer | Simmo Saan <simmo.saan@gmail.com> | 2017-06-03 15:59:12 +0300 |
commit | e5f67894be623fc8166b72d25d5a25d87084a6ba (patch) | |
tree | b3bcff321b9f27ebf954ce5a811e23f34853e4e0 | |
parent | 90936d8478eb6c4ad59ba88f8a8400155025940c (diff) | |
download | weechat-e5f67894be623fc8166b72d25d5a25d87084a6ba.zip |
gui, buflist: remove declared but undefined functions
-rw-r--r-- | src/gui/gui-chat.h | 2 | ||||
-rw-r--r-- | src/gui/gui-layout.h | 2 | ||||
-rw-r--r-- | src/gui/gui-line.h | 1 | ||||
-rw-r--r-- | src/plugins/buflist/buflist.h | 1 |
4 files changed, 0 insertions, 6 deletions
diff --git a/src/gui/gui-chat.h b/src/gui/gui-chat.h index 82d48c128..e1a6d1840 100644 --- a/src/gui/gui-chat.h +++ b/src/gui/gui-chat.h @@ -105,7 +105,5 @@ extern const char *gui_chat_string_next_char (struct t_gui_window *window, int apply_style_inactive, int nick_offline); extern void gui_chat_draw (struct t_gui_buffer *buffer, int clear_chat); -extern void gui_chat_draw_line (struct t_gui_buffer *buffer, - struct t_gui_line *line); #endif /* WEECHAT_GUI_CHAT_H */ diff --git a/src/gui/gui-layout.h b/src/gui/gui-layout.h index 3c5c82df5..77683e7bc 100644 --- a/src/gui/gui-layout.h +++ b/src/gui/gui-layout.h @@ -129,7 +129,5 @@ extern int gui_layout_window_add_to_infolist (struct t_infolist *infolist, extern int gui_layout_add_to_infolist (struct t_infolist *infolist, struct t_gui_layout *layout); extern void gui_layout_print_log (); -extern void gui_layout_init (); -extern void gui_layout_end (); #endif /* WEECHAT_GUI_LAYOUT_H */ diff --git a/src/gui/gui-line.h b/src/gui/gui-line.h index 5b1336377..d36236370 100644 --- a/src/gui/gui-line.h +++ b/src/gui/gui-line.h @@ -97,7 +97,6 @@ extern int gui_line_has_offline_nick (struct t_gui_line *line); extern void gui_line_compute_buffer_max_length (struct t_gui_buffer *buffer, struct t_gui_lines *lines); extern void gui_line_compute_prefix_max_length (struct t_gui_lines *lines); -extern void gui_line_set_prefix_same_nick (struct t_gui_line *line); extern void gui_line_mixed_free_buffer (struct t_gui_buffer *buffer); extern void gui_line_mixed_free_all (struct t_gui_buffer *buffer); extern void gui_line_free (struct t_gui_buffer *buffer, diff --git a/src/plugins/buflist/buflist.h b/src/plugins/buflist/buflist.h index 7f7cd744c..7574f678d 100644 --- a/src/plugins/buflist/buflist.h +++ b/src/plugins/buflist/buflist.h @@ -33,7 +33,6 @@ extern struct t_hdata *buflist_hdata_hotlist; extern void buflist_add_bar (); extern void buflist_buffer_get_irc_pointers(struct t_gui_buffer *buffer, void **irc_server, void **irc_channel); -extern struct t_gui_hotlist *buflist_search_hotlist_for_buffer (struct t_gui_buffer *buffer); extern struct t_arraylist *buflist_sort_buffers (); #endif /* WEECHAT_BUFLIST_H */ |