diff options
| author | Wilson E. Alvarez | 2017-09-14 13:49:11 -0400 |
|---|---|---|
| committer | Wilson E. Alvarez | 2017-09-14 13:49:15 -0400 |
| commit | 072e379ffe7f0d8adc2ac0eb700abfd7c27d8278 (patch) | |
| tree | 0271453fd6ff530f8222ca53e8a7e693a6366dbb /editor/editor_node.cpp | |
| parent | 8c08f2380d30e300f4f80dd292e9ff83f7bb84fd (diff) | |
| download | godot-072e379ffe7f0d8adc2ac0eb700abfd7c27d8278.tar.gz godot-072e379ffe7f0d8adc2ac0eb700abfd7c27d8278.tar.zst godot-072e379ffe7f0d8adc2ac0eb700abfd7c27d8278.zip | |
Renamed function arguments to keep them consistent between declaration and implementation
Diffstat (limited to 'editor/editor_node.cpp')
| -rw-r--r-- | editor/editor_node.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 3735c3057..1f745ed01 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -3306,9 +3306,9 @@ void EditorNode::_editor_file_dialog_unregister(EditorFileDialog *p_dialog) { Vector<EditorNodeInitCallback> EditorNode::_init_callbacks; -Error EditorNode::export_preset(const String &preset, const String &p_path, bool p_debug, const String &p_password, bool p_quit_after) { +Error EditorNode::export_preset(const String &p_preset, const String &p_path, bool p_debug, const String &p_password, bool p_quit_after) { - export_defer.preset = preset; + export_defer.preset = p_preset; export_defer.path = p_path; export_defer.debug = p_debug; export_defer.password = p_password; |
