From 933dd085a0bf05bb91cc3409b6898c58383b1057 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Tue, 13 Nov 2007 11:18:59 +0000 Subject: [PATCH] * Tutorial was generating a warning since the deprecation of cucul_putstr(). --- doc/tutorial.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.dox b/doc/tutorial.dox index 8e14f58..31d152d 100644 --- a/doc/tutorial.dox +++ b/doc/tutorial.dox @@ -27,7 +27,7 @@ int main(void) /* Choose drawing colours */ cucul_set_color_ansi(cv, CUCUL_BLACK, CUCUL_WHITE); /* Draw a string at coordinates (0, 0) */ - cucul_putstr(cv, 0, 0, "This is a message"); + cucul_put_str(cv, 0, 0, "This is a message"); /* Refresh display */ caca_refresh_display(dp); /* Wait for a key press event */