From b5dd1330e459f6edd51fd17a3874f2b11eb79dbc Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Wed, 29 May 2024 12:16:11 +0200 Subject: [PATCH] Wizards: Let wizard know its supported project types Preparation for later to make sub projects aware of the projects they may be added to. Change-Id: I95630adca6f756377d939b6c3169ada2c5a93236 Reviewed-by: Eike Ziller --- src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp b/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp index ba3f4696e0c..4e8d4964169 100644 --- a/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp +++ b/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp @@ -655,6 +655,7 @@ Wizard *JsonWizardFactory::runWizardImpl(const FilePath &path, QWidget *parent, wizard->setValue(QStringLiteral("Features"), Id::toStringList(availableFeatures(platform))); wizard->setValue(QStringLiteral("Plugins"), Id::toStringList(pluginFeatures())); + wizard->setValue(QStringLiteral("SupportedProjectTypes"), Id::toStringList(supportedProjectTypes())); // Add data to wizard: for (auto i = variables.constBegin(); i != variables.constEnd(); ++i)