summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@osg.samsung.com>2015-05-20 17:54:54 +0100
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2015-05-20 17:54:54 +0100
commit6b6ba6d2a00d11fb04c31734e0c8520c4764b90d (patch)
treed28a394c2e1e9a9ef1f99743b588f7f3fa79af28
parent152d18c2decff1fcbed4390a125d6283a5f48a5d (diff)
downloadelementary-6b6ba6d2a00d11fb04c31734e0c8520c4764b90d.tar.gz
eo: remove occurences of @const_get/@const_set
-rw-r--r--src/lib/elm_widget.eo9
-rw-r--r--src/lib/elm_win.eo33
2 files changed, 28 insertions, 14 deletions
diff --git a/src/lib/elm_widget.eo b/src/lib/elm_widget.eo
index 0bde07e6e..65d23c23a 100644
--- a/src/lib/elm_widget.eo
+++ b/src/lib/elm_widget.eo
@@ -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 {
diff --git a/src/lib/elm_win.eo b/src/lib/elm_win.eo
index aeacb5fca..ed3d0e808 100644
--- a/src/lib/elm_win.eo
+++ b/src/lib/elm_win.eo
@@ -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 {