From 432550130171ea487168182cb7a77ee4f02bb7f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Wed, 18 Nov 2009 04:57:08 +0100 Subject: [PATCH] Substitute deprecated function Use gtk_editable_set_editable() instead gtk_entry_set_editable() --- modules/other/gail/tests/testcombo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);