MetaWindowActor: Use guint for bitfields

A 1-bit boolean (int) bitfield has the values 0 and -1. Use
guint instead for bitfield values.

https://bugzilla.gnome.org/show_bug.cgi?id=685463
This commit is contained in:
Owen W. Taylor 2011-11-09 15:40:38 -05:00
parent 06e31e4c03
commit f6c3e48aa5

View File

@ -25,9 +25,9 @@ struct _MetaCompositor
MetaPlugin *modal_plugin; MetaPlugin *modal_plugin;
gboolean show_redraw : 1; guint show_redraw : 1;
gboolean debug : 1; guint debug : 1;
gboolean no_mipmaps : 1; guint no_mipmaps : 1;
}; };
struct _MetaCompScreen struct _MetaCompScreen