summaryrefslogtreecommitdiff
path: root/modules/other
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2009-10-22 05:17:29 +0200
committerJavier Jardón <jjardon@gnome.org>2010-05-03 01:51:18 +0200
commit20342702f49693229dfde4588823744ab5e68e95 (patch)
treead59902add81bb48add4c3aa3816d6daae39872e /modules/other
parentf7813125bbe873f4074c12ff38d8cf00639161dc (diff)
downloadgtk+-20342702f49693229dfde4588823744ab5e68e95.tar.gz
Remove gtkmain stuff from docs and tutorial.
Also, substitue the deprecated functions with the new ones in documentation and in tests code
Diffstat (limited to 'modules/other')
-rw-r--r--modules/other/gail/tests/testcombo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/other/gail/tests/testcombo.c b/modules/other/gail/tests/testcombo.c
index 03d5381b68..33559bbe66 100644
--- a/modules/other/gail/tests/testcombo.c
+++ b/modules/other/gail/tests/testcombo.c
@@ -135,7 +135,7 @@ static void _check_combo_box (AtkObject *obj)
if (!done)
{
- gtk_idle_add (_open_combo_list, obj);
+ g_idle_add ((GSourceFunc)_open_combo_list, obj);
done = TRUE;
}
else
@@ -150,7 +150,7 @@ static gint _open_combo_list (gpointer data)
g_print ("_open_combo_list\n");
atk_action_do_action (ATK_ACTION (obj), 0);
- gtk_timeout_add (5000, _close_combo_list, obj);
+ g_timeout_add (5000, _close_combo_list, obj);
return FALSE;
}