]> Pileus Git - ~andy/gtk/commitdiff
Fix nicks for the window class enum
authorMatthias Clasen <mclasen@redhat.com>
Wed, 14 Dec 2011 02:13:31 +0000 (21:13 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 14 Dec 2011 02:15:14 +0000 (21:15 -0500)
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'.

gdk/gdkwindow.h

index 58f98bd75a0d5da0d1947e36cda55be5e2841c2e..dc12fdfd0f207045e9d6ccec061a3ec5243de059 100644 (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;
 
 /**