1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

Refactored the structure of the introjucer's generated code folder, and gave it the ability to embed local copies of modules.

This commit is contained in:
Julian Storer 2011-08-16 18:05:20 +01:00
parent c65c07312d
commit 81da96f1a2
160 changed files with 864 additions and 2248 deletions

View file

@ -547,6 +547,11 @@ bool Project::Item::renameFile (const File& newFile)
return false;
}
bool Project::Item::containsChildForFile (const RelativePath& file) const
{
return node.getChildWithProperty (Ids::file, file.toUnixStyle()).isValid();
}
Project::Item Project::Item::findItemForFile (const File& file) const
{
if (getFile() == file)