diff options
author | Benjamin Otte <otte@redhat.com> | 2010-08-29 02:30:33 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-09-26 15:11:33 +0200 |
commit | f08254074cd3cc359f0a95b4a472a702b55c96cd (patch) | |
tree | 169bc4578e6318481a21016c6cd4e06c30b37471 /gdk/gdkwindow.h | |
parent | eac72ec83016eebe581ac26782ff4fda6329a3cd (diff) | |
download | gtk+-f08254074cd3cc359f0a95b4a472a702b55c96cd.tar.gz |
API: Remove colormap member from GdkWindowAttr
Also remove all code that cares about differing colormaps for child
windows.
Diffstat (limited to 'gdk/gdkwindow.h')
-rw-r--r-- | gdk/gdkwindow.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gdk/gdkwindow.h b/gdk/gdkwindow.h index b99af205e6..a8c4448e7c 100644 --- a/gdk/gdkwindow.h +++ b/gdk/gdkwindow.h @@ -89,7 +89,6 @@ typedef enum * @GDK_WA_X: Honor the X coordinate field * @GDK_WA_Y: Honor the Y coordinate field * @GDK_WA_CURSOR: Honor the cursor field - * @GDK_WA_COLORMAP: Honor the colormap field * @GDK_WA_VISUAL: Honor the visual field * @GDK_WA_WMCLASS: Honor the wmclass_class and wmclass_name fields * @GDK_WA_NOREDIR: Honor the override_redirect field @@ -108,11 +107,10 @@ typedef enum GDK_WA_X = 1 << 2, GDK_WA_Y = 1 << 3, GDK_WA_CURSOR = 1 << 4, - GDK_WA_COLORMAP = 1 << 5, - GDK_WA_VISUAL = 1 << 6, - GDK_WA_WMCLASS = 1 << 7, - GDK_WA_NOREDIR = 1 << 8, - GDK_WA_TYPE_HINT = 1 << 9 + GDK_WA_VISUAL = 1 << 5, + GDK_WA_WMCLASS = 1 << 6, + GDK_WA_NOREDIR = 1 << 7, + GDK_WA_TYPE_HINT = 1 << 8 } GdkWindowAttributesType; /* Size restriction enumeration. @@ -332,7 +330,6 @@ typedef enum * @wclass: #GDK_INPUT_OUTPUT (normal window) or #GDK_INPUT_ONLY (invisible * window that receives events) * @visual: #GdkVisual for window - * @colormap: #GdkColormap for window * @window_type: type of window * @cursor: cursor for the window (see gdk_window_set_cursor()) * @wmclass_name: don't use (see gtk_window_set_wmclass()) @@ -351,7 +348,6 @@ struct _GdkWindowAttr gint height; GdkWindowClass wclass; GdkVisual *visual; - GdkColormap *colormap; GdkWindowType window_type; GdkCursor *cursor; gchar *wmclass_name; |