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) |
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 640169d..b1b2f23 100644 --- a/src/lib/elementary/elm_flipselector_item.eo +++ b/src/lib/elementary/elm_flipselector_item.eo | |||
@@ -1,4 +1,4 @@ | |||
1 | class Elm.Flipselector_Item(Elm.Widget_Item) | 1 | class Elm.Flipselector.Item(Elm.Widget.Item) |
2 | { | 2 | { |
3 | eo_prefix: elm_obj_flipselector_item; | 3 | eo_prefix: elm_obj_flipselector_item; |
4 | methods { | 4 | methods { |
@@ -33,7 +33,7 @@ class Elm.Flipselector_Item(Elm.Widget_Item) | |||
33 | 33 | ||
34 | See also @.next_get. | 34 | See also @.next_get. |
35 | ]] | 35 | ]] |
36 | 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.]] | 36 | 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.]] |
37 | } | 37 | } |
38 | next_get @const { | 38 | next_get @const { |
39 | [[Get the item after $item in a flip selector widget's | 39 | [[Get the item after $item in a flip selector widget's |
@@ -41,14 +41,14 @@ class Elm.Flipselector_Item(Elm.Widget_Item) | |||
41 | 41 | ||
42 | See also @.prev_get. | 42 | See also @.prev_get. |
43 | ]] | 43 | ]] |
44 | 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.]] | 44 | 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.]] |
45 | } | 45 | } |
46 | } | 46 | } |
47 | implements { | 47 | implements { |
48 | Eo.Base.constructor; | 48 | Eo.Base.constructor; |
49 | Eo.Base.destructor; | 49 | Eo.Base.destructor; |
50 | Elm.Widget_Item.signal_emit; | 50 | Elm.Widget.Item.signal_emit; |
51 | Elm.Widget_Item.part_text.get; | 51 | Elm.Widget.Item.part_text.get; |
52 | Elm.Widget_Item.part_text.set; | 52 | Elm.Widget.Item.part_text.set; |
53 | } | 53 | } |
54 | } | 54 | } |