efl/wl: fix namespacing conflict in rotation enum

Differential Revision: https://phab.enlightenment.org/D11667
This commit is contained in:
Mike Blumenkrantz 2020-04-08 09:47:53 -04:00
parent 4009ffb4d2
commit b0fd22fffe
2 changed files with 4 additions and 2 deletions

View File

@ -11,7 +11,7 @@ struct @beta @extern Efl.Canvas.Wl_Xkb_State; [[ struct xkb_state. @since 1.24 ]
struct @beta @extern Efl.Canvas.Wl_Wl_Array; [[ struct wl_array. @since 1.24 ]]
enum @beta Efl.Canvas.Wl.Rotation
enum @beta Efl.Canvas.Wl_Rotation
{
[[Orientation of the internal compositor object in degrees. These values are COUNTER-CLOCKWISE.
]]
@ -122,7 +122,7 @@ class @beta Efl.Canvas.Wl extends Efl.Canvas.Group
Note that the rotation provided here is counter-clockwise.
]]
values {
rotation: Efl.Canvas.Wl.Rotation; [[The rotation to apply to the internal output.]]
rotation: Efl.Canvas.Wl_Rotation; [[The rotation to apply to the internal output.]]
rtl: bool; [[The horizontal flip to apply to the internal output.]]
}
}

View File

@ -144,6 +144,8 @@ EFL_START_TEST(elm_test_hoversel_position)
ck_assert_int_le(x + w, 500);
ck_assert_int_le(y + h, 500);
}
evas_object_del(hoversel);
}
EFL_END_TEST