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
This commit is contained in:
Marcel Hollerbach 2020-04-18 19:43:11 +02:00
parent 15acb0586a
commit 29ae24cbf9
1 changed files with 2 additions and 2 deletions

View File

@ -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]]