summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Michael <cp.michael@samsung.com>2019-11-05 09:29:06 -0500
committerChristopher Michael <cp.michael@samsung.com>2019-11-05 09:36:20 -0500
commit9eb745a3c1b93b89c1680dea3f1ed33ed8e28cd9 (patch)
tree89d5b494d853226a03c49fe2240ca6d7319be9aa
parentec1ce2b15d50d675ce9c25e29f6c9009943ff119 (diff)
downloadefl-9eb745a3c1b93b89c1680dea3f1ed33ed8e28cd9.tar.gz
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.
-rw-r--r--src/modules/evas/engines/wayland_common/Evas_Engine_Wayland.h2
1 files changed, 1 insertions, 1 deletions
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