summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@osg.samsung.com>2016-11-10 15:44:57 +0100
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2016-11-10 15:44:57 +0100
commit6b156ad6c68269d9af89afbb6d5a748a04c53e60 (patch)
treef6b01eb57b8432161bc743ac2923df4009072e5e
parentbacbb1e5bdd693cc8cfbbc95fc8ad8851dbc0a64 (diff)
downloadefl-6b156ad6c68269d9af89afbb6d5a748a04c53e60.tar.gz
efl_ui_win: remove most pointers
-rw-r--r--src/lib/elementary/efl_ui_win.eo6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/elementary/efl_ui_win.eo b/src/lib/elementary/efl_ui_win.eo
index 259b472e4d..4de6a2b7c0 100644
--- a/src/lib/elementary/efl_ui_win.eo
+++ b/src/lib/elementary/efl_ui_win.eo
@@ -213,7 +213,7 @@ class Efl.Ui.Win (Elm.Widget, Efl.Canvas, Elm.Interface.Atspi.Window,
]]
legacy: elm_win_wm_rotation_available_rotations_set;
values {
- rotations: const(int)*; [[The array of rotation value.]]
+ rotations: ptr(const(int)); [[The array of rotation value.]]
count: uint; [[The size of the rotations array.]]
}
}
@@ -226,7 +226,7 @@ class Efl.Ui.Win (Elm.Widget, Efl.Canvas, Elm.Interface.Atspi.Window,
]]
legacy: elm_win_wm_rotation_available_rotations_get;
values {
- rotations: int*; [[The array of rotation value.]]
+ rotations: ptr(int); [[The array of rotation value.]]
count: uint; [[The size of the rotations array.]]
}
return: bool;
@@ -652,7 +652,7 @@ class Efl.Ui.Win (Elm.Widget, Efl.Canvas, Elm.Interface.Atspi.Window,
@since 1.8
]]
values {
- profiles: string*; [[The string array of available profiles.]]
+ profiles: ptr(string); [[The string array of available profiles.]]
count: uint; [[The number of members in profiles.]]
}
}