Fix nicks for the window class enum

As pointed out in bug 665999, these were just not right.
Before this commit, the nicks were 'output' and 'only'.
After this commit, they are 'input-output' and 'input-only'.
This commit is contained in:
Matthias Clasen 2011-12-13 21:13:31 -05:00
parent 10b5ec20f2
commit ffb56ecc15

View File

@ -53,8 +53,8 @@ typedef struct _GdkWindowRedirect GdkWindowRedirect;
*/
typedef enum
{
GDK_INPUT_OUTPUT,
GDK_INPUT_ONLY
GDK_INPUT_OUTPUT, /*< nick=input-output >*/
GDK_INPUT_ONLY /*< nick=input-only >*/
} GdkWindowWindowClass;
/**