diff options
author | Tom Hacohen <tom@stosb.com> | 2016-05-12 11:21:36 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2016-05-12 11:21:36 +0100 |
commit | ef6c88435bab007c94d451375f39f015a6592541 (patch) | |
tree | 0646bbc8bf0f747d46737cb0bd0443b4f83af08c /src/lib/elementary/elm_flipselector_item.eo | |
parent | db5c38f93da209db04f704b8b9d46f0934f1d062 (diff) | |
download | efl-ef6c88435bab007c94d451375f39f015a6592541.tar.gz |
Elm items: Fix namespacing to use . and not _.
Diffstat (limited to 'src/lib/elementary/elm_flipselector_item.eo')
-rw-r--r-- | src/lib/elementary/elm_flipselector_item.eo | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/elementary/elm_flipselector_item.eo b/src/lib/elementary/elm_flipselector_item.eo index 640169d802..b1b2f239a4 100644 --- a/src/lib/elementary/elm_flipselector_item.eo +++ b/src/lib/elementary/elm_flipselector_item.eo @@ -1,4 +1,4 @@ -class Elm.Flipselector_Item(Elm.Widget_Item) +class Elm.Flipselector.Item(Elm.Widget.Item) { eo_prefix: elm_obj_flipselector_item; methods { @@ -33,7 +33,7 @@ class Elm.Flipselector_Item(Elm.Widget_Item) See also @.next_get. ]] - return: Elm.Widget_Item *; [[The item before the $item, in its parent's list. If there is no previous item for $item or there's an error, $null is returned.]] + return: Elm.Widget.Item *; [[The item before the $item, in its parent's list. If there is no previous item for $item or there's an error, $null is returned.]] } next_get @const { [[Get the item after $item in a flip selector widget's @@ -41,14 +41,14 @@ class Elm.Flipselector_Item(Elm.Widget_Item) See also @.prev_get. ]] - return: Elm.Widget_Item *; [[The item after the $item, in its parent's list. If there is no next item for $item or there's an error, $null is returned.]] + return: Elm.Widget.Item *; [[The item after the $item, in its parent's list. If there is no next item for $item or there's an error, $null is returned.]] } } implements { Eo.Base.constructor; Eo.Base.destructor; - Elm.Widget_Item.signal_emit; - Elm.Widget_Item.part_text.get; - Elm.Widget_Item.part_text.set; + Elm.Widget.Item.signal_emit; + Elm.Widget.Item.part_text.get; + Elm.Widget.Item.part_text.set; } } |