bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=29ae24cbf97e66e1d3985d2f515f0b02851120f7

commit 29ae24cbf97e66e1d3985d2f515f0b02851120f7
Author: Marcel Hollerbach <m...@marcel-hollerbach.de>
Date:   Sat Apr 18 19:43:11 2020 +0200

    efl_ui_win: declare constructors not optional
    
    they cannot be optional, or in later languages types will collide.
    
    Differential Revision: https://phab.enlightenment.org/D11741
---
 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]]

-- 


Reply via email to