diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-02 18:03:27 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-02 18:03:27 +0200 |
commit | 2ffd141cf497e4c9e4953d302a0eae4c9592c0c3 (patch) | |
tree | a915d45786268a28f00c19a800cbb3033fa1c12f /src/gui/gtk/gui-gtk-nicklist.c | |
parent | f51f02547eb3b1491c3bcc201927efd778c044b4 (diff) | |
download | weechat-2ffd141cf497e4c9e4953d302a0eae4c9592c0c3.zip |
Add new /layout command and save_layout_on_exit config option, to save/restore windows and buffers order (task #5453)
Diffstat (limited to 'src/gui/gtk/gui-gtk-nicklist.c')
-rw-r--r-- | src/gui/gtk/gui-gtk-nicklist.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/gtk/gui-gtk-nicklist.c b/src/gui/gtk/gui-gtk-nicklist.c index 67b765ac7..16f4819d3 100644 --- a/src/gui/gtk/gui-gtk-nicklist.c +++ b/src/gui/gtk/gui-gtk-nicklist.c @@ -31,12 +31,16 @@ /* * gui_nicklist_draw: draw nick window for a buffer + * return 1 if chat window has been refreshed, 0 if only + * nicklist has been refreshed */ -void +int gui_nicklist_draw (struct t_gui_buffer *buffer, int erase) { /* TODO: write this function for Gtk */ (void) buffer; (void) erase; + + return 0; } |