1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Updated function argument names

This commit is contained in:
Wilson E. Alvarez
2017-08-12 12:52:50 -04:00
parent 5052cb2b91
commit 428f03cf06
74 changed files with 195 additions and 194 deletions

View File

@@ -4183,9 +4183,9 @@ void PropertyEditor::set_keying(bool p_active) {
update_tree();
}
void PropertyEditor::_draw_flags(Object *t, const Rect2 &p_rect) {
void PropertyEditor::_draw_flags(Object *p_object, const Rect2 &p_rect) {
TreeItem *ti = t->cast_to<TreeItem>();
TreeItem *ti = p_object->cast_to<TreeItem>();
if (!ti)
return;