summaryrefslogtreecommitdiff
path: root/gtk/gtklayout.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-08-28 18:04:08 +0200
committerBenjamin Otte <otte@redhat.com>2010-09-26 15:11:31 +0200
commite8a6bad00bc9c544cece170f01dd220e5abc3254 (patch)
tree5ed0e4e03140f34d32567121f70bc49fe031a46c /gtk/gtklayout.c
parenta38472c139ba20384e1ec93fca4bc789b0c69345 (diff)
downloadgtk+-e8a6bad00bc9c544cece170f01dd220e5abc3254.tar.gz
gtk: Don't set colormap anymore when creating GDK windows
Colormaps are about to be removed, so not using them sounds like an awesome idea.
Diffstat (limited to 'gtk/gtklayout.c')
-rw-r--r--gtk/gtklayout.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/gtklayout.c b/gtk/gtklayout.c
index 82147730c1..f73bfb9fd4 100644
--- a/gtk/gtklayout.c
+++ b/gtk/gtklayout.c
@@ -884,10 +884,9 @@ gtk_layout_realize (GtkWidget *widget)
attributes.height = allocation.height;
attributes.wclass = GDK_INPUT_OUTPUT;
attributes.visual = gtk_widget_get_visual (widget);
- attributes.colormap = gtk_widget_get_colormap (widget);
attributes.event_mask = GDK_VISIBILITY_NOTIFY_MASK;
- attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
+ attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL;
window = gdk_window_new (gtk_widget_get_parent_window (widget),
&attributes, attributes_mask);