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

Added a method ValueTree::appendChild(). Also tidied up a lot of the ValueTree comments, which were a bit scrappy.

This commit is contained in:
jules 2017-11-11 14:17:48 +00:00
parent e2a0759ab3
commit babea0885b
16 changed files with 158 additions and 159 deletions

View file

@ -1502,7 +1502,7 @@ void Project::addNewExporter (const String& exporterName)
+ getUniqueTargetFolderSuffixForExporter (exp->getName(), exp->getTargetLocationString());
auto exportersTree = getExporters();
exportersTree.addChild (exp->settings, -1, getUndoManagerFor (exportersTree));
exportersTree.appendChild (exp->settings, getUndoManagerFor (exportersTree));
}
void Project::createExporterForCurrentPlatform()