mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Use getSiblingFile in more places
This commit is contained in:
parent
5d5fdaf008
commit
5737c42ccf
7 changed files with 17 additions and 17 deletions
|
|
@ -507,7 +507,7 @@ Array<File> PIPGenerator::replaceRelativeIncludesAndGetFilesToMove()
|
|||
if (path.startsWith ("<") && path.endsWith (">"))
|
||||
continue;
|
||||
|
||||
auto file = pipFile.getParentDirectory().getChildFile (path);
|
||||
auto file = pipFile.getSiblingFile (path);
|
||||
files.add (file);
|
||||
|
||||
line = line.replace (path, file.getFileName());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue