gail: do not use removed GTK_WIDGET_*SET macros

In the absence of new API to port to, left the code commented
with a /* FIXME */ state, for somebody with better gail knowledge
to fix.
This commit is contained in:
Javier Jardón 2010-06-16 20:37:54 +02:00
parent a8e3ce6bb4
commit 8fc7a58504

View File

@ -164,9 +164,9 @@ get_children (GtkWidget *submenu)
*/
if (!gtk_widget_get_visible (submenu))
{
GTK_WIDGET_SET_FLAGS (submenu, GTK_VISIBLE);
/* FIXME GTK_WIDGET_SET_FLAGS (submenu, GTK_VISIBLE); */
g_signal_emit_by_name (submenu, "show");
GTK_WIDGET_UNSET_FLAGS (submenu, GTK_VISIBLE);
/* FIXME GTK_WIDGET_UNSET_FLAGS (submenu, GTK_VISIBLE); */
}
g_list_free (children);
children = gtk_container_get_children (GTK_CONTAINER (submenu));