use unsigned for 1-bit members.

SVN revision: 37313
This commit is contained in:
Gustavo Sverzut Barbieri 2008-10-29 19:07:10 +00:00
parent 5e30ab4563
commit 37b9f3af65
1 changed files with 5 additions and 5 deletions

View File

@ -227,11 +227,11 @@ struct _Ecore_Evas
char *name;
int x, y, w, h;
short rotation;
char shaped : 1;
char visible : 1;
char draw_ok : 1;
char should_be_visible : 1;
char alpha : 1;
Eina_Bool shaped : 1;
Eina_Bool visible : 1;
Eina_Bool draw_ok : 1;
Eina_Bool should_be_visible : 1;
Eina_Bool alpha : 1;
Evas_Hash *data;