From 63e5216951b5c0e78f8cfdb8d046647dfcf91acf Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 8 Apr 2020 09:47:53 -0400 Subject: [PATCH] efl/wl: fix namespacing conflict in rotation enum Reviewed-by: Marcel Hollerbach Differential Revision: https://phab.enlightenment.org/D11667 --- src/lib/efl_canvas_wl/efl_canvas_wl.eo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/efl_canvas_wl/efl_canvas_wl.eo b/src/lib/efl_canvas_wl/efl_canvas_wl.eo index 4481ef4f12..843f034dc2 100644 --- a/src/lib/efl_canvas_wl/efl_canvas_wl.eo +++ b/src/lib/efl_canvas_wl/efl_canvas_wl.eo @@ -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.]] } }