docs: elm: fix stack_base property doc to cover getter function as well
authorStefan Schmidt <stefan@osg.samsung.com>
Tue, 20 Dec 2016 08:12:27 +0000 (09:12 +0100)
committerStefan Schmidt <stefan@osg.samsung.com>
Tue, 20 Dec 2016 08:12:27 +0000 (09:12 +0100)
Documenting the property itself will make sure getter as well as setter
are documented.

src/lib/elementary/efl_ui_win.eo

index 886b14d892ebcf00ff5c57c9510aabb3598288ba..756f175bb1f62c07234fad504ae3d0a302eae334 100644 (file)
@@ -773,23 +773,24 @@ class Efl.Ui.Win (Elm.Widget, Efl.Canvas, Elm.Interface.Atspi.Window,
          }
       }
       @property stack_base {
-         set {
-            [[Set the stack base state of this window
+         [[The stack base state of this window
 
-              This is a boolean flag that determines if this window will
-              become the base of a stack at all. You must enable this
-              on a base (bottom of a window stack for things to work
-              correctly.
+           This is a boolean flag that determines if this window will
+           become the base of a stack at all. You must enable this
+           on a base (bottom of a window stack for things to work
+           correctly.
 
-              This state should be set before a window is shown for the
-              first time and never changed again after that.
+           This state should be set before a window is shown for the
+           first time and never changed again after that.
 
-              @since 1.19]]
-         }
+           @since 1.19
+         ]]
+
+         set {}
          get {}
          values {
-            base: bool; [[True if this is a stack base window, false
-                          false otherwise.]]
+            base: bool; [[$true if this is a stack base window, $false
+                          otherwise.]]
          }
       }
       stack_pop_to_id {