diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-07-16 11:04:10 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-07-16 11:04:10 +0000 |
commit | 4c4f5ab01243f87c3640f6aacf0219d2d52aa91f (patch) | |
tree | 7c31240c5ede084795be739828d8011f72c66af8 /src/gui/gtk/gui-gtk-nicklist.c | |
parent | c308b2ec1f59cbc70847128c018f1c277fa31e74 (diff) | |
download | weechat-4c4f5ab01243f87c3640f6aacf0219d2d52aa91f.zip |
added some panel functions, fixed refresh bugs when terminal is resized: too many refreshs, display bug with splited windows
Diffstat (limited to 'src/gui/gtk/gui-gtk-nicklist.c')
-rw-r--r-- | src/gui/gtk/gui-gtk-nicklist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/gtk/gui-gtk-nicklist.c b/src/gui/gtk/gui-gtk-nicklist.c index 494ef2b46..7fef1d73c 100644 --- a/src/gui/gtk/gui-gtk-nicklist.c +++ b/src/gui/gtk/gui-gtk-nicklist.c @@ -36,7 +36,7 @@ */ void -gui_nicklist_draw (t_gui_buffer *buffer, int erase) +gui_nicklist_draw (t_gui_buffer *buffer, int erase, int calculate_size) { /*t_gui_window *ptr_win; int i, j, x, y, column, max_length, nicks_displayed; @@ -49,4 +49,5 @@ gui_nicklist_draw (t_gui_buffer *buffer, int erase) /* TODO: write this function for Gtk */ (void) buffer; (void) erase; + (void) calculate_size; } |