summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-06-16 20:37:54 +0200
committerJavier Jardón <jjardon@gnome.org>2010-06-16 20:41:05 +0200
commitb74fb44c115c61745d691fc2da7aef5505f6eccd (patch)
tree7bb62bd7cfb83eee7002283e6b0e7c3d578aac15
parent2747f9d84d5149090ac7d02063d2d3d30aa66ecb (diff)
downloadgtk+-b74fb44c115c61745d691fc2da7aef5505f6eccd.tar.gz
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.
-rw-r--r--modules/other/gail/gailmenuitem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/other/gail/gailmenuitem.c b/modules/other/gail/gailmenuitem.c
index 0e61a0b31c..3f456b335e 100644
--- a/modules/other/gail/gailmenuitem.c
+++ b/modules/other/gail/gailmenuitem.c
@@ -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));