summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2020-04-18 19:43:11 +0200
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2020-06-09 10:39:35 +0200
commit29ae24cbf97e66e1d3985d2f515f0b02851120f7 (patch)
treefc09a97d4bba88fbd1cd2cb651c69156fdb564fd
parent15acb0586a3e8e6a17d074e1e0142403752aa41b (diff)
downloadefl-29ae24cbf97e66e1d3985d2f515f0b02851120f7.tar.gz
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
-rw-r--r--src/lib/elementary/efl_ui_win.eo4
1 files 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]]