From c03c950c48f7accca60611a2cab25675d9f90160 Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 5 Apr 2018 15:14:58 +0100 Subject: [PATCH] Projucer: Add array delimiter strings to the PIPCreator multi-choice values --- .../Application/Windows/jucer_PIPCreatorWindowComponent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/Projucer/Source/Application/Windows/jucer_PIPCreatorWindowComponent.h b/extras/Projucer/Source/Application/Windows/jucer_PIPCreatorWindowComponent.h index 6463787b47..184c04bf45 100644 --- a/extras/Projucer/Source/Application/Windows/jucer_PIPCreatorWindowComponent.h +++ b/extras/Projucer/Source/Application/Windows/jucer_PIPCreatorWindowComponent.h @@ -319,9 +319,9 @@ private: vendorValue { pipTree, Ids::vendor, nullptr }, websiteValue { pipTree, Ids::website, nullptr }, descriptionValue { pipTree, Ids::description, nullptr }, - dependenciesValue { pipTree, Ids::dependencies_, nullptr, getModulesRequiredForComponent() }, + dependenciesValue { pipTree, Ids::dependencies_, nullptr, getModulesRequiredForComponent(), "," }, exportersValue { pipTree, Ids::exporters, nullptr, - StringArray (ProjectExporter::getValueTreeNameForExporter (ProjectExporter::getCurrentPlatformExporterName()).toLowerCase()) }, + StringArray (ProjectExporter::getValueTreeNameForExporter (ProjectExporter::getCurrentPlatformExporterName()).toLowerCase()), "," }, moduleFlagsValue { pipTree, Ids::moduleFlags, nullptr }, definesValue { pipTree, Ids::defines, nullptr }, typeValue { pipTree, Ids::type, nullptr, "Component" },