diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-12-13 21:13:31 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-12-13 21:15:14 -0500 |
commit | ffb56ecc15e824d830d1bd346f87295cfda6ad45 (patch) | |
tree | b669b62fe4167997a0b5fcfc67f3974f168c0f03 /gdk/gdkwindow.h | |
parent | 10b5ec20f2d42949bbec2f3519dbf5dca380fe49 (diff) | |
download | gtk+-ffb56ecc15e824d830d1bd346f87295cfda6ad45.tar.gz |
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'.
Diffstat (limited to 'gdk/gdkwindow.h')
-rw-r--r-- | gdk/gdkwindow.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/gdkwindow.h b/gdk/gdkwindow.h index 58f98bd75a..dc12fdfd0f 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; /** |