elm_genlist: parent -> parent_item

This commit is contained in:
Mike Blumenkrantz 2018-02-14 21:14:52 -05:00
parent 1a65fa5dbc
commit 504ad62a6b
2 changed files with 3 additions and 2 deletions

View File

@ -6861,7 +6861,7 @@ _elm_genlist_item_prev_get(Eo *eo_it EINA_UNUSED, Elm_Gen_Item *it)
}
EOLIAN static Elm_Object_Item *
_elm_genlist_item_parent_get(Eo *eo_it EINA_UNUSED, Elm_Gen_Item *it)
_elm_genlist_item_parent_item_get(Eo *eo_it EINA_UNUSED, Elm_Gen_Item *it)
{
ELM_GENLIST_ITEM_CHECK_OR_RETURN(it, NULL);

View File

@ -82,7 +82,7 @@ class Elm.Genlist.Item(Elm.Widget.Item.Static_Focus, Efl.Ui.Legacy)
item: Elm.Widget.Item; [[The item after $item, or $null if there's none (and on errors).]]
}
}
@property parent {
@property parent_item {
get {
[[Get the parent item of the given item
@ -90,6 +90,7 @@ class Elm.Genlist.Item(Elm.Widget.Item.Static_Focus, Efl.Ui.Legacy)
of the item $it on \@ref elm_genlist_item_append
and insertion related functions.
]]
legacy: elm_genlist_item_parent_get;
}
values {
item: Elm.Widget.Item; [[The parent of the item or $null if it has no parent.]]