From d11c1afc0497894edd8307434948fc8fb4bb1b11 Mon Sep 17 00:00:00 2001 From: "Wilson E. Alvarez" Date: Sun, 29 Aug 2021 19:43:47 -0400 Subject: Rename String::is_rel_path to String::is_relative_path --- core/string/ustring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/string/ustring.cpp') 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(); } -- cgit v1.2.3