From 4a88f35e83377a1fcc820134c6255cab37a85eea Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Sat, 18 Apr 2020 19:43:11 +0200 Subject: [PATCH] efl_ui_win: declare constructors not optional they cannot be optional, or in later languages types will collide. --- src/lib/elementary/efl_ui_win.eo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elementary/efl_ui_win.eo b/src/lib/elementary/efl_ui_win.eo index 602acf506b..54686b0bae 100644 --- a/src/lib/elementary/efl_ui_win.eo +++ b/src/lib/elementary/efl_ui_win.eo @@ -835,9 +835,9 @@ class Efl.Ui.Win extends Efl.Ui.Widget implements Efl.Canvas.Scene, Efl.Access.W Efl.Part.part_get; } constructors { - .win_name @optional; + .win_name; .win_type @optional; - .accel_preference @optional; + .accel_preference; } events { delete,request: void; [[Called when the window receives a delete request]]