From 3aa7674666d2a8de89b370873077810ebfd7c589 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Tue, 16 Aug 2016 17:59:56 +0900 Subject: [PATCH] win: Mark two properties as eo-only Why aren't those functions implemented yet? @fix --- src/lib/elementary/efl_ui_win.eo | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/lib/elementary/efl_ui_win.eo b/src/lib/elementary/efl_ui_win.eo index c002b71..6ee123f 100644 --- a/src/lib/elementary/efl_ui_win.eo +++ b/src/lib/elementary/efl_ui_win.eo @@ -164,8 +164,12 @@ class Efl.Ui.Win (Elm.Widget, Efl.Canvas, Elm.Interface.Atspi.Window, @since 1.18 ]] - set { } - get { } + set { + legacy: null; + } + get { + legacy: null; + } values { enabled: bool; [[If true, the indicator is enabled, If false, the indicator is disabled.]] @@ -176,8 +180,12 @@ class Efl.Ui.Win (Elm.Widget, Efl.Canvas, Elm.Interface.Atspi.Window, @since 1.18 ]] - set { } - get { } + set { + legacy: null; + } + get { + legacy: null; + } values { type: Efl.Ui.Win.Indicator_Type; [[The type, one of #Efl_Ui_Win_Indicator_Type.]] } -- 2.7.4