devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=9eb745a3c1b93b89c1680dea3f1ed33ed8e28cd9
commit 9eb745a3c1b93b89c1680dea3f1ed33ed8e28cd9 Author: Christopher Michael <cp.mich...@samsung.com> Date: Tue Nov 5 09:29:06 2019 -0500 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. --- src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h b/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h index 539b83b38b..8225924ec3 100644 --- a/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h +++ b/src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h @@ -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 --