diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2009-10-15 12:25:21 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2009-10-15 12:25:21 +0100 |
commit | ef3361caa3f4bd43147f269f9be8f54736ee68b3 (patch) | |
tree | 8ab1542efd50493dadfe4ab65d5ec1ab9db18558 /demos | |
parent | 3c18cc3405441578eecd9644289e700da8b4c678 (diff) | |
download | gtk+-ef3361caa3f4bd43147f269f9be8f54736ee68b3.tar.gz |
gtk-demo: Remove C99-ism from list_store example
Diffstat (limited to 'demos')
-rw-r--r-- | demos/gtk-demo/list_store.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |