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

Merge pull request #11274 from Rubonnek/keep-argument-names-consistent

Renamed function arguments to keep them consistent between declaration and implementation
This commit is contained in:
Rémi Verschelde
2017-09-17 12:53:48 +02:00
committed by GitHub
16 changed files with 27 additions and 27 deletions

View File

@@ -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;