diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-06-03 15:41:22 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-06-03 16:00:06 +0200 |
commit | 5ea1c75d639b53ef1fe84ef33bb65a844f6741b6 (patch) | |
tree | 09ec40fd359c5e01757ada06ae9a720c3b91c3c3 /core/variant/variant_call.cpp | |
parent | 7ab34e1a96ad6210bd583a00df379637b31169d6 (diff) | |
download | redot-engine-5ea1c75d639b53ef1fe84ef33bb65a844f6741b6.tar.gz |
Rename `String.is_abs_path()` to `String.is_absolute_path()`
This is more consistent with `NodePath.is_absolute()`.
Diffstat (limited to 'core/variant/variant_call.cpp')
-rw-r--r-- | core/variant/variant_call.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant/variant_call.cpp b/core/variant/variant_call.cpp index 063611d415..06942f6f2a 100644 --- a/core/variant/variant_call.cpp +++ b/core/variant/variant_call.cpp @@ -1365,7 +1365,7 @@ static void _register_variant_builtin_methods() { // FIXME: Static function, not sure how to bind //bind_method(String, humanize_size, sarray("size"), varray()); - bind_method(String, is_abs_path, sarray(), varray()); + bind_method(String, is_absolute_path, sarray(), varray()); bind_method(String, is_rel_path, sarray(), varray()); bind_method(String, get_base_dir, sarray(), varray()); bind_method(String, get_file, sarray(), varray()); |