Rename String::is_rel_path to String::is_relative_path

This commit is contained in:
Wilson E. Alvarez 2021-08-29 19:43:47 -04:00
parent 838a449d64
commit d11c1afc04
No known key found for this signature in database
GPG key ID: A32174A3D2ED3F9E
23 changed files with 52 additions and 52 deletions

View file

@ -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;