diff options
author | Benjamin Otte <otte@redhat.com> | 2016-11-06 16:22:21 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-11-06 16:22:21 +0100 |
commit | 7a6cab14eb7bc6340a85447a8eb1d90138062f06 (patch) | |
tree | 3653099ed8fb10bc3d3b06e68b04a51ac7cb61c7 /gdk/gdkwindow.h | |
parent | e0600346e25844b00a95b354f9d914e4f055ce69 (diff) | |
download | gtk+-7a6cab14eb7bc6340a85447a8eb1d90138062f06.tar.gz |
gdkwindow: Remove GdkWindowAttr.type_hint
Instead, let the callers call gdk_window_set_type_hint(). Which is
surprsingly what every backend did.
Diffstat (limited to 'gdk/gdkwindow.h')
-rw-r--r-- | gdk/gdkwindow.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdk/gdkwindow.h b/gdk/gdkwindow.h index 8a62ba676c..f53338e40e 100644 --- a/gdk/gdkwindow.h +++ b/gdk/gdkwindow.h @@ -87,7 +87,6 @@ typedef enum * GdkWindowAttributesType: * @GDK_WA_X: Honor the X coordinate field * @GDK_WA_Y: Honor the Y coordinate field - * @GDK_WA_TYPE_HINT: Honor the type_hint field * * Used to indicate which fields in the #GdkWindowAttr struct should be honored. * For example, if you filled in the “x” and “y” fields of #GdkWindowAttr, @@ -99,8 +98,7 @@ typedef enum typedef enum { GDK_WA_X = 1 << 1, - GDK_WA_Y = 1 << 2, - GDK_WA_TYPE_HINT = 1 << 3 + GDK_WA_Y = 1 << 2 } GdkWindowAttributesType; /* Size restriction enumeration. |