Browse Source

Projucer: Add array delimiter strings to the PIPCreator multi-choice values

tags/2021-05-28
ed 7 years ago
parent
commit
c03c950c48
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      extras/Projucer/Source/Application/Windows/jucer_PIPCreatorWindowComponent.h

+ 2
- 2
extras/Projucer/Source/Application/Windows/jucer_PIPCreatorWindowComponent.h View File

@@ -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" },


Loading…
Cancel
Save