Fix inconsistencies and typos in argument names
This commit is contained in:
@ -121,10 +121,10 @@ void EditorSubScene::_item_multi_selected(Object *p_object, int p_cell, bool p_s
|
||||
}
|
||||
}
|
||||
|
||||
void EditorSubScene::_remove_selection_child(Node *n) {
|
||||
if (n->get_child_count() > 0) {
|
||||
for (int i = 0; i < n->get_child_count(); i++) {
|
||||
Node *c = n->get_child(i);
|
||||
void EditorSubScene::_remove_selection_child(Node *p_node) {
|
||||
if (p_node->get_child_count() > 0) {
|
||||
for (int i = 0; i < p_node->get_child_count(); i++) {
|
||||
Node *c = p_node->get_child(i);
|
||||
List<Node *>::Element *E = selection.find(c);
|
||||
if (E) {
|
||||
selection.move_to_back(E);
|
||||
|
||||
Reference in New Issue
Block a user