mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Rename String::is_rel_path to String::is_relative_path
This commit is contained in:
parent
838a449d64
commit
d11c1afc04
23 changed files with 52 additions and 52 deletions
|
|
@ -1967,7 +1967,7 @@ bool Main::start() {
|
|||
for (int i = 0; i < _doc_data_class_path_count; i++) {
|
||||
// Custom modules are always located by absolute path.
|
||||
String path = _doc_data_class_paths[i].path;
|
||||
if (path.is_rel_path()) {
|
||||
if (path.is_relative_path()) {
|
||||
path = doc_tool_path.plus_file(path);
|
||||
}
|
||||
String name = _doc_data_class_paths[i].name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue