Merge pull request #29830 from NilsIrl/remove_useless

Remove useless cast from c-string to String
This commit is contained in:
Rémi Verschelde 2019-06-17 11:00:01 +02:00 committed by GitHub
commit b5459d9f0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2319,7 +2319,7 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
}
} break;
case FILE_EXPLORE_ANDROID_BUILD_TEMPLATES: {
OS::get_singleton()->shell_open(String("file://") + ProjectSettings::get_singleton()->get_resource_path().plus_file("android"));
OS::get_singleton()->shell_open("file://" + ProjectSettings::get_singleton()->get_resource_path().plus_file("android"));
} break;
case FILE_QUIT:
case RUN_PROJECT_MANAGER: {