Rename String plus_file to path_join
This commit is contained in:
parent
051f24b067
commit
10a56981dc
100 changed files with 519 additions and 519 deletions
|
|
@ -4451,7 +4451,7 @@ String String::get_extension() const {
|
|||
return substr(pos + 1, length());
|
||||
}
|
||||
|
||||
String String::plus_file(const String &p_file) const {
|
||||
String String::path_join(const String &p_file) const {
|
||||
if (is_empty()) {
|
||||
return p_file;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -370,7 +370,7 @@ public:
|
|||
String rstrip(const String &p_chars) const;
|
||||
String get_extension() const;
|
||||
String get_basename() const;
|
||||
String plus_file(const String &p_file) const;
|
||||
String path_join(const String &p_file) const;
|
||||
char32_t unicode_at(int p_idx) const;
|
||||
|
||||
void erase(int p_pos, int p_chars);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue