[gtk+] Fix nicks for the window class enum



commit ffb56ecc15e824d830d1bd346f87295cfda6ad45
Author: Matthias Clasen <mclasen redhat com>
Date:   Tue Dec 13 21:13:31 2011 -0500

    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'.

 gdk/gdkwindow.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gdk/gdkwindow.h b/gdk/gdkwindow.h
index 58f98bd..dc12fdf 100644
--- a/gdk/gdkwindow.h
+++ b/gdk/gdkwindow.h
@@ -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;
 
 /**



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]