1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

Rename String::is_rel_path to String::is_relative_path

This commit is contained in:
Wilson E. Alvarez
2021-08-29 19:43:47 -04:00
parent 838a449d64
commit d11c1afc04
23 changed files with 52 additions and 52 deletions

View File

@@ -135,7 +135,7 @@ Error DirAccess::make_dir_recursive(String p_dir) {
String full_dir;
if (p_dir.is_rel_path()) {
if (p_dir.is_relative_path()) {
//append current
full_dir = get_current_dir().plus_file(p_dir);
@@ -345,7 +345,7 @@ Error DirAccess::_copy_dir(DirAccess *p_target_da, String p_to, int p_chmod_flag
dirs.push_back(n);
} else {
const String &rel_path = n;
if (!n.is_rel_path()) {
if (!n.is_relative_path()) {
list_dir_end();
return ERR_BUG;
}