eo: remove occurences of @const_get/@const_set
authorDaniel Kolesa <d.kolesa@osg.samsung.com>
Wed, 20 May 2015 16:54:54 +0000 (17:54 +0100)
committerDaniel Kolesa <d.kolesa@osg.samsung.com>
Wed, 20 May 2015 16:54:54 +0000 (17:54 +0100)
src/lib/elm_widget.eo
src/lib/elm_win.eo

index 0bde07e..65d23c2 100644 (file)
@@ -140,12 +140,15 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
       @property focus_custom_chain {
          set {
             /*@ No description supplied by the EAPI. */
+            values {
+               objs: list<Evas_Object*>*;
+            }
          }
          get {
             /*@ No description supplied by the EAPI. */
-         }
-         values {
-            objs: list<Evas_Object *> * @const_get;
+            values {
+               objs: const(list<Evas_Object*>)*;
+            }
          }
       }
       @property can_focus {
index aeacb5f..ed3d0e8 100644 (file)
@@ -294,6 +294,10 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window,
             ingroup Win
             @since 1.9 */
             legacy: elm_win_wm_rotation_available_rotations_set;
+            values {
+               rotations: const(int)*; /*@ The array of rotation value. */
+               count: uint; /*@ The size of the @param rotations array. */
+            }
          }
          get {
             /*@
@@ -306,12 +310,12 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window,
             ingroup Win
             @since 1.9 */
             legacy: elm_win_wm_rotation_available_rotations_get;
+            values {
+               rotations: int*; /*@ The array of rotation value. */
+               count: uint; /*@ The size of the @param rotations array. */
+            }
             return: bool;
          }
-         values {
-            rotations: int * @const_set; /*@ The array of rotation value. */
-            count: uint; /*@ The size of the @param rotations array. */
-         }
       }
       @property quickpanel_zone {
          set {
@@ -536,6 +540,10 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window,
 
             @ingroup Win
             @since 1.8 */
+            values {
+               profiles: const(char)**; /*@ The string array of available profiles */
+               count: uint; /*@ The number of members in profiles */
+            }
          }
          get {
             /*@
@@ -545,12 +553,12 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window,
 
             @ingroup Win
             @since 1.8 */
+            values {
+               profiles: char**; /*@ The string array of available profiles */
+               count: uint; /*@ The number of members in profiles */
+            }
             return: bool;
          }
-         values {
-            profiles: char ** @const_set; /*@ The string array of available profiles */
-            count: uint; /*@ The number of members in profiles */
-         }
       }
       @property focus_highlight_enabled {
          set {
@@ -701,6 +709,9 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window,
             @endcode
 
             @ingroup Win */
+            values {
+               icon: Evas_Object* @nullable; /*@ The Evas image object to use for an icon */
+            }
          }
          get {
             /*@
@@ -712,9 +723,9 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window,
             @return The icon object set
 
             @ingroup Win */
-         }
-         values {
-            icon: Evas_Object * @const_get @nullable; /*@ The Evas image object to use for an icon */
+            values {
+               icon: const(Evas_Object)* @nullable; /*@ The Evas image object to use for an icon */
+            }
          }
       }
       @property quickpanel_priority_minor {