diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-01-07 14:27:29 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-01-07 14:27:29 +0100 |
commit | 9dd2c1b616cdbdce84ee055e10e6418eb1727010 (patch) | |
tree | 121de9518d5d896a54cd42f91e3e522b2334db2b /src/gui | |
parent | d3a62a94345391efe9126febe19d96977fd8de89 (diff) | |
download | weechat-9dd2c1b616cdbdce84ee055e10e6418eb1727010.zip |
Remove some compiler warnings
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gtk/gui-gtk-chat.c | 17 | ||||
-rw-r--r-- | src/gui/gui-completion.c | 3 |
2 files changed, 12 insertions, 8 deletions
diff --git a/src/gui/gtk/gui-gtk-chat.c b/src/gui/gtk/gui-gtk-chat.c index d5fc0c078..7b009f83c 100644 --- a/src/gui/gtk/gui-gtk-chat.c +++ b/src/gui/gtk/gui-gtk-chat.c @@ -470,14 +470,16 @@ gui_chat_draw (struct t_gui_buffer *buffer, int erase) void gui_chat_draw_line (struct t_gui_buffer *buffer, struct t_gui_line *line) { - struct t_gui_window *ptr_win; - unsigned char *message_without_color; - GtkTextIter start, end; + //struct t_gui_window *ptr_win; + //unsigned char *message_without_color; + //GtkTextIter start, end; (void) buffer; + (void) line; - //ptr_win = gui_buffer_find_window (buffer); - //if (ptr_win) + /* + ptr_win = gui_buffer_find_window (buffer); + if (ptr_win) { message_without_color = gui_color_decode ((unsigned char *)(line->message)); if (message_without_color) @@ -488,9 +490,10 @@ gui_chat_draw_line (struct t_gui_buffer *buffer, struct t_gui_line *line) "\n", -1); gtk_text_buffer_get_bounds (GUI_WINDOW_OBJECTS(ptr_win)->textbuffer_chat, &start, &end); - /* TODO */ - /*gtk_text_buffer_apply_tag (ptr_win->textbuffer_chat, ptr_win->texttag_chat, &start, &end);*/ + // TODO + //gtk_text_buffer_apply_tag (ptr_win->textbuffer_chat, ptr_win->texttag_chat, &start, &end); free (message_without_color); } } + */ } diff --git a/src/gui/gui-completion.c b/src/gui/gui-completion.c index 477433217..dadd60b12 100644 --- a/src/gui/gui-completion.c +++ b/src/gui/gui-completion.c @@ -812,7 +812,8 @@ gui_completion_list_add_option_value (struct t_gui_completion *completion) 0, WEECHAT_LIST_POS_BEGINNING); if (option_found->value) { - value_string = malloc (64); + length = 64; + value_string = malloc (length); if (value_string) { snprintf (value_string, length, |