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.
This commit is contained in:
Benjamin Otte 2010-12-03 16:10:46 +01:00
parent a996a309c7
commit d916398dd2
2 changed files with 4 additions and 4 deletions

View File

@ -326,7 +326,7 @@ gdk_visual_get_type
<FILE>windows</FILE>
GdkWindow
GdkWindowType
GdkWindowClass
GdkWindowWindowClass
GdkWindowHints
GdkGeometry
GdkGravity

View File

@ -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;