summaryrefslogtreecommitdiff
path: root/gtk/gtkwindow.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-02-23 00:13:17 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-02-23 00:13:17 +0000
commita504db9e83bb022aaaa6d265481fc2bb376e87df (patch)
treee116ba25c324cea2e10b22f1c15fd37b17d7c43a /gtk/gtkwindow.h
parentc73054c5a952c12a2a1429d9cd464266e8b23e36 (diff)
downloadgtk+-a504db9e83bb022aaaa6d265481fc2bb376e87df.tar.gz
Fixes for AIX compilation from Miroslaw Dobrzanski-Neumann, #72182.
Fri Feb 22 18:36:45 2002 Owen Taylor <otaylor@redhat.com> Fixes for AIX compilation from Miroslaw Dobrzanski-Neumann, #72182. * demos/gtk-demo/main.c gtk/gtktreeview.c gtk/gtktoolbar.c gtk/gtkpaned.c gtk/gtkobject.c gtk/gtkcontainer.c gtk/gtkcolorsel.c gtk/gtkcellrender.c gdk/x11/xsettings-client.h: Squash trailing commas on enumerations. * gdk/gdktypes.h: Drop GDK_RELEASE_MASK to 1 << 30 instead of 1 << 31 to work around AIX compiler problem. (C standard seems to imply that compiler is required to use an unsigned type for the enum value in this case.) * gdk/gdkpixbuf-drawable.c: Fix lvalue casts. * gtk/gtkwindow.h: Fix use of enum types for bitfields ... compilers may choose to use a signed type for bitfields.
Diffstat (limited to 'gtk/gtkwindow.h')
-rw-r--r--gtk/gtkwindow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkwindow.h b/gtk/gtkwindow.h
index 329fcdc442..393e028495 100644
--- a/gtk/gtkwindow.h
+++ b/gtk/gtkwindow.h
@@ -82,7 +82,7 @@ struct _GtkWindow
guint need_default_position : 1;
guint need_default_size : 1;
guint position : 3;
- GtkWindowType type : 4;
+ guint type : 4; /* GtkWindowType */
guint has_user_ref_count : 1;
guint has_focus : 1;
@@ -97,8 +97,8 @@ struct _GtkWindow
guint maximize_initially : 1;
guint decorated : 1;
- GdkWindowTypeHint type_hint : 3;
- GdkGravity gravity : 5;
+ guint type_hint : 3; /* GdkWindowTypeHint */
+ guint gravity : 5; /* GdkGravity */
guint frame_left;
guint frame_top;