mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
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:
parent
06e31e4c03
commit
f6c3e48aa5
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user