evas-wayland-common: Fix variable type

The 'resizing' variable here does not need to be an 'int' as it's
either true or false, so change to be Eina_Bool.
This commit is contained in:
Christopher Michael 2019-11-05 09:29:06 -05:00
parent ec1ce2b15d
commit 9eb745a3c1
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,6 @@ struct _Evas_Engine_Info_Wayland
Eina_Rectangle window;
int x_rel, y_rel;
int x_cursor, y_cursor;
int resizing;
uint32_t timestamp;
/* window surface should be made with these config */
int depth_bits;
@ -41,6 +40,7 @@ struct _Evas_Engine_Info_Wayland
Eina_Bool drag_start : 1;
Eina_Bool drag_stop : 1;
Eina_Bool drag_ack : 1;
Eina_Bool resizing : 1;
};
#endif