summaryrefslogtreecommitdiff
path: root/scene/gui
diff options
context:
space:
mode:
authorPoommetee Ketson <poommetee@protonmail.com>2018-03-24 00:57:58 +0700
committerPoommetee Ketson <poommetee@protonmail.com>2018-04-11 10:20:22 +0700
commit72aa87758a6c7795dc488cda45ccbd37f71de9a7 (patch)
tree5258d73a942a67d6e5a90c9ccbd9c3287af4a0ff /scene/gui
parent0f6fdb77c58f6f17bcdd85b107ad30b4e04edf3f (diff)
Update classref and docs, fix missing parameters' name
Diffstat (limited to 'scene/gui')
-rw-r--r--scene/gui/item_list.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/item_list.cpp b/scene/gui/item_list.cpp
index fa7c9e091e..ecd98f054d 100644
--- a/scene/gui/item_list.cpp
+++ b/scene/gui/item_list.cpp
@@ -1434,7 +1434,7 @@ void ItemList::_bind_methods() {
ClassDB::bind_method(D_METHOD("is_selected", "idx"), &ItemList::is_selected);
ClassDB::bind_method(D_METHOD("get_selected_items"), &ItemList::get_selected_items);
- ClassDB::bind_method(D_METHOD("move_item", "p_from_idx", "p_to_idx"), &ItemList::move_item);
+ ClassDB::bind_method(D_METHOD("move_item", "from_idx", "to_idx"), &ItemList::move_item);
ClassDB::bind_method(D_METHOD("get_item_count"), &ItemList::get_item_count);
ClassDB::bind_method(D_METHOD("remove_item", "idx"), &ItemList::remove_item);