diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2018-03-24 00:57:58 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2018-04-11 10:20:22 +0700 |
commit | 72aa87758a6c7795dc488cda45ccbd37f71de9a7 (patch) | |
tree | 5258d73a942a67d6e5a90c9ccbd9c3287af4a0ff /doc/classes/ItemList.xml | |
parent | 0f6fdb77c58f6f17bcdd85b107ad30b4e04edf3f (diff) | |
download | redot-engine-72aa87758a6c7795dc488cda45ccbd37f71de9a7.tar.gz |
Update classref and docs, fix missing parameters' name
Diffstat (limited to 'doc/classes/ItemList.xml')
-rw-r--r-- | doc/classes/ItemList.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/classes/ItemList.xml b/doc/classes/ItemList.xml index 4539c31441..bd1d6be4f5 100644 --- a/doc/classes/ItemList.xml +++ b/doc/classes/ItemList.xml @@ -148,6 +148,7 @@ <return type="bool"> </return> <description> + Returns [code]true[/code] if one or more items are selected. </description> </method> <method name="is_item_disabled" qualifiers="const"> @@ -189,11 +190,12 @@ <method name="move_item"> <return type="void"> </return> - <argument index="0" name="p_from_idx" type="int"> + <argument index="0" name="from_idx" type="int"> </argument> - <argument index="1" name="p_to_idx" type="int"> + <argument index="1" name="to_idx" type="int"> </argument> <description> + Moves item at index [code]from_idx[/code] to [code]to_idx[/code]. </description> </method> <method name="remove_item"> @@ -346,6 +348,7 @@ <return type="void"> </return> <description> + Ensure there are no items selected. </description> </method> </methods> |