jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1aceb3bc198f3f9a07671f37564efc6657fe2a41

commit 1aceb3bc198f3f9a07671f37564efc6657fe2a41
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Tue Jun 7 20:36:40 2016 +0900

    elm_win: Disable legacy for name and type set
    
    Those are only valid during eo_add, before finalize.
    Both of these are constructors.
---
 src/lib/elementary/elm_win.eo | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/lib/elementary/elm_win.eo b/src/lib/elementary/elm_win.eo
index 6ac31c1..8f1eb5d 100644
--- a/src/lib/elementary/elm_win.eo
+++ b/src/lib/elementary/elm_win.eo
@@ -564,12 +564,13 @@ class Elm.Win (Elm.Widget, Elm.Interface.Atspi.Window,
          */
          set {
             [[Can only be used at creation time, within \@ref eo_add.]]
+            legacy: null;
          }
          values {
             name: string @nullable;
          }
       }
-      @property type { /* FIXME: before finalize */
+      @property type {
          [[The type of the window.
 
            It is a hint of how the Window Manager should handle it.
@@ -587,6 +588,7 @@ class Elm.Win (Elm.Widget, Elm.Interface.Atspi.Window,
          */
          set {
             [[Can only be used at creation time, within \@ref eo_add.]]
+            legacy: null;
          }
          get {
             [[If the object is not window object, return #ELM_WIN_UNKNOWN.]]

-- 


Reply via email to