1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Removed unused function

This commit is contained in:
ed 2020-05-22 12:23:21 +01:00
parent 2bfed0b354
commit 257e5e579b

View file

@ -872,22 +872,6 @@ public:
return false;
}
bool addFilesToFilter (const Array<build_tools::RelativePath>& files, const String& path,
XmlElement& cpps, XmlElement& headers, XmlElement& otherFiles, XmlElement& groups)
{
if (files.size() > 0)
{
addFilterGroup (groups, path);
for (int i = 0; i < files.size(); ++i)
addFileToFilter (files.getReference(i), path, cpps, headers, otherFiles);
return true;
}
return false;
}
void fillInFiltersXml (XmlElement& filterXml) const
{
filterXml.setAttribute ("ToolsVersion", getOwner().getToolsVersion());