1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 05:46:38 +02:00

core: remove unused function gui_window_wprintw

This commit is contained in:
Sebastien Helleu
2011-08-23 11:38:18 +02:00
parent 6e9c14dd61
commit 9a299e1ab3
-21
View File
@@ -148,27 +148,6 @@ gui_window_objects_free (struct t_gui_window *window, int free_separator)
}
}
/*
* gui_window_wprintw: decode then display string with wprintw
*/
void
gui_window_wprintw (WINDOW *window, const char *data, ...)
{
va_list argptr;
static char buf[4096];
char *buf2;
va_start (argptr, data);
vsnprintf (buf, sizeof (buf) - 1, data, argptr);
va_end (argptr);
buf2 = string_iconv_from_internal (NULL, buf);
wprintw (window, "%s", (buf2) ? buf2 : buf);
if (buf2)
free (buf2);
}
/*
* gui_window_clear_weechat: clear a Curses window with a weechat color
*/