diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-08-30 20:45:45 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 20:45:45 -0300 |
commit | bcd73fc00a913babb501dd119d3d833aceaf88da (patch) | |
tree | f5213fab100f72bbfecba792e0b05b72c2ddd2da /core/string/ustring.cpp | |
parent | d085b2d04d6a6f972cc252532dbbf07f0d54fc3c (diff) | |
parent | d11c1afc0497894edd8307434948fc8fb4bb1b11 (diff) |
Merge pull request #52240 from Rubonnek/rename-rel-path
Rename `String::is_rel_path` to `String::is_relative_path`
Diffstat (limited to 'core/string/ustring.cpp')
-rw-r--r-- | core/string/ustring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/string/ustring.cpp b/core/string/ustring.cpp index a30d6b9102..a3b5356b1d 100644 --- a/core/string/ustring.cpp +++ b/core/string/ustring.cpp @@ -4324,7 +4324,7 @@ bool String::is_resource_file() const { return begins_with("res://") && find("::") == -1; } -bool String::is_rel_path() const { +bool String::is_relative_path() const { return !is_absolute_path(); } |