From ef3361caa3f4bd43147f269f9be8f54736ee68b3 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 15 Oct 2009 12:25:21 +0100 Subject: [PATCH] gtk-demo: Remove C99-ism from list_store example --- demos/gtk-demo/list_store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/gtk-demo/list_store.c b/demos/gtk-demo/list_store.c index 156ddf6cd4..94335afdf8 100644 --- a/demos/gtk-demo/list_store.c +++ b/demos/gtk-demo/list_store.c @@ -276,7 +276,7 @@ do_list_store (GtkWidget *do_widget) { gtk_widget_show_all (window); if (timeout == 0) { - //FIXME this should use the animation-duration instead + /* FIXME this should use the animation-duration instead */ timeout = g_timeout_add (80, spinner_timeout, NULL); } }