aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_node.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-09-17 12:53:48 +0200
committerGitHub2017-09-17 12:53:48 +0200
commitc74bab66aaaef355ef8ac8d7e1a249509fad544e (patch)
treeacb761bb28562f1f40e0e5736a9c79e91b4b7fb1 /editor/editor_node.cpp
parenta1b4e4c607acb09c13bdf1b9609f2d45c4b01e15 (diff)
parent072e379ffe7f0d8adc2ac0eb700abfd7c27d8278 (diff)
downloadgodot-c74bab66aaaef355ef8ac8d7e1a249509fad544e.tar.gz
godot-c74bab66aaaef355ef8ac8d7e1a249509fad544e.tar.zst
godot-c74bab66aaaef355ef8ac8d7e1a249509fad544e.zip
Merge pull request #11274 from Rubonnek/keep-argument-names-consistent
Renamed function arguments to keep them consistent between declaration and implementation
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r--editor/editor_node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 58703ccf9..d7cce71b9 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -3338,9 +3338,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;