diff options
author | Javier Jardón <jjardon@gnome.org> | 2009-11-18 04:57:08 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-05-03 01:51:20 +0200 |
commit | 432550130171ea487168182cb7a77ee4f02bb7f0 (patch) | |
tree | 5825e299ce0127340ffcd074c4e5bc6ff464ac5e /modules | |
parent | e45d8f557a195cd4f7fb2df28219190c9ab1146e (diff) | |
download | gtk+-432550130171ea487168182cb7a77ee4f02bb7f0.tar.gz |
Substitute deprecated function
Use gtk_editable_set_editable() instead gtk_entry_set_editable()
Diffstat (limited to 'modules')
-rw-r--r-- | modules/other/gail/tests/testcombo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/other/gail/tests/testcombo.c b/modules/other/gail/tests/testcombo.c index 33559bbe66..4598010ef1 100644 --- a/modules/other/gail/tests/testcombo.c +++ b/modules/other/gail/tests/testcombo.c @@ -119,7 +119,7 @@ static void _check_combo_box (AtkObject *obj) combo = GTK_ACCESSIBLE (combo_obj)->widget; entry = GTK_ENTRY (gtk_bin_get_child (GTK_BIN (combo))); - gtk_entry_set_editable (entry, FALSE); + gtk_editable_set_editable (GTK_EDITABLE (entry), FALSE); } _check_children (combo_obj); _test_selection (combo_obj); |