diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-12-22 19:10:43 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-12-22 19:10:43 +0000 |
commit | 721c3bc10182cacf1a98baddde3c94e59797ddb7 (patch) | |
tree | 78b2e3ae3c00133a58f09653aff664e4ab0305e9 /tests/testcombo.c | |
parent | 7854bd1b6e6102aff426bf6a48606c4a9b12b7c2 (diff) | |
download | gtk+-721c3bc10182cacf1a98baddde3c94e59797ddb7.tar.gz |
Replace a lot of idle and timeout calls by the new gdk_threads api.
2006-12-22 Matthias Clasen <mclasen@redhat.com>
* *.c: Replace a lot of idle and timeout calls by
the new gdk_threads api.
Diffstat (limited to 'tests/testcombo.c')
-rw-r--r-- | tests/testcombo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testcombo.c b/tests/testcombo.c index 12d8de3447..c27cc005fb 100644 --- a/tests/testcombo.c +++ b/tests/testcombo.c @@ -1332,7 +1332,7 @@ main (int argc, char **argv) gtk_combo_box_set_active_iter (GTK_COMBO_BOX (combobox), &iter); #if 1 - g_timeout_add (1000, (GSourceFunc) capital_animation, model); + gdk_threads_add_timeout (1000, (GSourceFunc) capital_animation, model); #endif gtk_widget_show_all (window); |