diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2016-05-23 15:41:28 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2016-05-23 15:58:33 +0100 |
commit | e984e5a11a777765761e0438911ee714f67cf322 (patch) | |
tree | 0a496432fa765c7f8110a3ce6fe7d02eb68963ce /src/lib/elementary/elm_flipselector.eo | |
parent | 0c6b0efaee80d6ed64a2ad619d8bcb637fd6bec6 (diff) | |
download | efl-e984e5a11a777765761e0438911ee714f67cf322.tar.gz |
eolian: remove pointers from complex and class types
Complex types (i.e. list, array, hash, accessor etc.) now do not require
pointers with them anymore (the pointer is implied) and the same goes for
class handles. Eolian now explicitly disallows creating pointers to these
as well. This is the first part of the work to remove pointers from Eolian
completely, with the goal of simplifying the DSL (higher level) and therefore
making it easier for bindings (as well as easier API usage).
@feature
Diffstat (limited to 'src/lib/elementary/elm_flipselector.eo')
-rw-r--r-- | src/lib/elementary/elm_flipselector.eo | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/elementary/elm_flipselector.eo b/src/lib/elementary/elm_flipselector.eo index 93e3b74d14..2846eb3d79 100644 --- a/src/lib/elementary/elm_flipselector.eo +++ b/src/lib/elementary/elm_flipselector.eo @@ -22,7 +22,7 @@ class Elm.Flipselector (Elm.Layout, Efl.Ui.Spin, items list is changed. It should be fetched again with another call to this function when changes happen. ]] - return: const(list<Elm.Widget.Item*>)*; + return: const(list<Elm.Widget.Item>); } } @property first_item { @@ -33,7 +33,7 @@ class Elm.Flipselector (Elm.Layout, Efl.Ui.Spin, See also @.item_append, @.last_item.get. ]] - return: Elm.Widget.Item *; [[The first item or $null, if it has no items (and on + return: Elm.Widget.Item; [[The first item or $null, if it has no items (and on errors).]] } @@ -46,7 +46,7 @@ class Elm.Flipselector (Elm.Layout, Efl.Ui.Spin, See also @.item_prepend, @.first_item.get. ]] - return: Elm.Widget.Item *; [[The last item or $null, if it has no items (and on + return: Elm.Widget.Item; [[The last item or $null, if it has no items (and on errors).]] } @@ -54,7 +54,7 @@ class Elm.Flipselector (Elm.Layout, Efl.Ui.Spin, @property selected_item { get { [[Get the currently selected item in a flip selector widget.]] - return: Elm.Widget.Item *; [[The selected item or $null, if the widget has no items + return: Elm.Widget.Item; [[The selected item or $null, if the widget has no items (and on errors).]] } @@ -74,7 +74,7 @@ class Elm.Flipselector (Elm.Layout, Efl.Ui.Spin, determined by the widget's theme. Strings larger than that value are going to be truncated. ]] - return: Elm.Widget.Item *; + return: Elm.Widget.Item; params { @in label: const(char)*; [[The (text) label of the new item.]] @in func: Evas_Smart_Cb @optional; [[Convenience callback function to take place when @@ -105,7 +105,7 @@ class Elm.Flipselector (Elm.Layout, Efl.Ui.Spin, determined by the widget's theme. Strings larger than that value are going to be truncated. ]] - return: Elm.Widget.Item *; + return: Elm.Widget.Item; params { @in label: const(char)*; [[The (text) label of the new item.]] @in func: Evas_Smart_Cb @optional; [[Convenience callback function to take place when |