aboutsummaryrefslogtreecommitdiff
path: root/core/ustring.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2017-01-14 00:51:09 -0300
committerJuan Linietsky2017-01-14 00:51:09 -0300
commitd9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6 (patch)
treef5c92321612fdd5f8967c349898d3475b52bf930 /core/ustring.cpp
parentf3b6177ece8a06e52870ed422cbcc67276606e5a (diff)
downloadgodot-d9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6.tar.gz
godot-d9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6.tar.zst
godot-d9d77291bca8dd1e87aa4d9e40de96d99e5ef1f6.zip
Diffstat (limited to 'core/ustring.cpp')
-rw-r--r--core/ustring.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp
index 27bb8eac7..cce355afd 100644
--- a/core/ustring.cpp
+++ b/core/ustring.cpp
@@ -3812,7 +3812,7 @@ String String::get_file() const {
return substr(sep+1,length());
}
-String String::extension() const {
+String String::get_extension() const {
int pos = find_last(".");
if (pos<0)
@@ -3891,7 +3891,7 @@ String String::percent_decode() const {
return String::utf8(pe.ptr());
}
-String String::basename() const {
+String String::get_basename() const {
int pos = find_last(".");
if (pos<0)