1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

Merge pull request #10307 from Rubonnek/update-argument-names

Updated function argument names
This commit is contained in:
Rémi Verschelde
2017-08-16 17:17:56 +02:00
committed by GitHub
74 changed files with 195 additions and 194 deletions

View File

@@ -947,9 +947,9 @@ void CanvasItemEditor::incend(float &beg, float &end, float inc, float minsize,
}
}
void CanvasItemEditor::_append_canvas_item(CanvasItem *c) {
void CanvasItemEditor::_append_canvas_item(CanvasItem *p_item) {
editor_selection->add_node(c);
editor_selection->add_node(p_item);
}
void CanvasItemEditor::_snap_changed() {