From d916398dd2bc05bbdf50939b2583ea2e3a3cec97 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Fri, 3 Dec 2010 16:10:46 +0100 Subject: [PATCH] API: Rename GdkWindowClass to GdkWindowWindowClass We argued replacing GdkWindowClass with a input_only boolean, but this is not doable in an API-stable way, so I decided against it. --- docs/reference/gdk/gdk3-sections.txt | 2 +- gdk/gdkwindow.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/reference/gdk/gdk3-sections.txt b/docs/reference/gdk/gdk3-sections.txt index 7b58029f18..e1c5bc5526 100644 --- a/docs/reference/gdk/gdk3-sections.txt +++ b/docs/reference/gdk/gdk3-sections.txt @@ -326,7 +326,7 @@ gdk_visual_get_type windows GdkWindow GdkWindowType -GdkWindowClass +GdkWindowWindowClass GdkWindowHints GdkGeometry GdkGravity diff --git a/gdk/gdkwindow.h b/gdk/gdkwindow.h index 55726ffffc..b25b5f9ec7 100644 --- a/gdk/gdkwindow.h +++ b/gdk/gdkwindow.h @@ -42,7 +42,7 @@ typedef struct _GdkPointerHooks GdkPointerHooks; typedef struct _GdkWindowRedirect GdkWindowRedirect; /** - * GdkWindowClass: + * GdkWindowWindowClass: * @GDK_INPUT_OUTPUT: window for graphics and events * @GDK_INPUT_ONLY: window for events only * @@ -56,7 +56,7 @@ typedef enum { GDK_INPUT_OUTPUT, GDK_INPUT_ONLY -} GdkWindowClass; +} GdkWindowWindowClass; /** * GdkWindowType: @@ -345,7 +345,7 @@ struct _GdkWindowAttr gint x, y; gint width; gint height; - GdkWindowClass wclass; + GdkWindowWindowClass wclass; GdkVisual *visual; GdkWindowType window_type; GdkCursor *cursor;