diff options
author | Benjamin Otte <otte@redhat.com> | 2016-11-07 01:33:43 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-11-07 01:33:43 +0100 |
commit | d2c26c471c574acc9199d8f032ae2a9d0894481b (patch) | |
tree | 124a97aac4fa75d359e334267344e208a5c203fe /gdk/gdkinternals.h | |
parent | 9fe8b1e11240f5d853711c8e8fc4d2a0aa943c09 (diff) | |
download | gtk+-d2c26c471c574acc9199d8f032ae2a9d0894481b.tar.gz |
gdk: Remove attributes_mask from gdk_window_new()
The only remaining values were always treated as 0, so we just hardcode
them to 0.
Diffstat (limited to 'gdk/gdkinternals.h')
-rw-r--r-- | gdk/gdkinternals.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gdk/gdkinternals.h b/gdk/gdkinternals.h index e29d97454d..9700627ccd 100644 --- a/gdk/gdkinternals.h +++ b/gdk/gdkinternals.h @@ -87,12 +87,6 @@ typedef enum { GDK_GL_GLES = 1 << 6 } GdkGLFlags; -typedef enum -{ - GDK_WA_X = 1 << 1, - GDK_WA_Y = 1 << 2 -} GdkWindowAttributesType; - extern GList *_gdk_default_filters; extern GdkWindow *_gdk_parent_root; @@ -429,8 +423,7 @@ cairo_surface_t * _gdk_window_ref_cairo_surface (GdkWindow *window); GdkWindow* gdk_window_new (GdkWindow *parent, - GdkWindowAttr *attributes, - gint attributes_mask); + GdkWindowAttr *attributes); void _gdk_window_destroy (GdkWindow *window, gboolean foreign_destroy); void _gdk_window_clear_update_area (GdkWindow *window); |