diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-11 15:58:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-11 15:58:16 +0200 |
commit | 6b0183ec893ddea3f8ae71005b5fce1ae988e8a0 (patch) | |
tree | 762ec5df42c374a18bb5ad0ee4cd213ba0add257 /drivers/windows | |
parent | 6107d9e180a51e3c9feb4fe8c818321c292ff86b (diff) | |
parent | 5ea1c75d639b53ef1fe84ef33bb65a844f6741b6 (diff) |
Merge pull request #49279 from Calinou/rename-string-is-abs-path-method
Rename `String.is_abs_path()` to `String.is_absolute_path()`
Diffstat (limited to 'drivers/windows')
-rw-r--r-- | drivers/windows/dir_access_windows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/windows/dir_access_windows.cpp b/drivers/windows/dir_access_windows.cpp index 55f9e6de17..325bae5b56 100644 --- a/drivers/windows/dir_access_windows.cpp +++ b/drivers/windows/dir_access_windows.cpp @@ -208,7 +208,7 @@ String DirAccessWindows::get_current_dir(bool p_include_drive) { bool DirAccessWindows::file_exists(String p_file) { GLOBAL_LOCK_FUNCTION - if (!p_file.is_abs_path()) { + if (!p_file.is_absolute_path()) { p_file = get_current_dir().plus_file(p_file); } |