aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/studiowelcome
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@qt.io>2023-10-04 16:26:15 +0200
committerTim Jenssen <tim.jenssen@qt.io>2023-10-04 14:39:39 +0000
commit97ca8cc2700fb606fdcc1e3f089e904e6d308aba (patch)
tree5fd906dc70708e3d26d6c7a041db4e94e19b8865 /src/plugins/studiowelcome
parenta88caa00c7da8574b5f8d33ee9625aa4d944966f (diff)
Core: add ICore::isQtDesignStudio()
Change-Id: I3aed97b62abd05b283ac327be210af75f173383d Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'src/plugins/studiowelcome')
-rw-r--r--src/plugins/studiowelcome/studiowelcomeplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/studiowelcome/studiowelcomeplugin.cpp b/src/plugins/studiowelcome/studiowelcomeplugin.cpp
index 6b4168f9b64..5a7c4077a74 100644
--- a/src/plugins/studiowelcome/studiowelcomeplugin.cpp
+++ b/src/plugins/studiowelcome/studiowelcomeplugin.cpp
@@ -548,7 +548,7 @@ void StudioWelcomePlugin::extensionsInitialized()
Core::ModeManager::activateMode(m_welcomeMode->id());
// Enable QDS new project dialog and QDS wizards
- if (QmlProjectManager::QmlProject::isQtDesignStudio()) {
+ if (Core::ICore::isQtDesignStudio()) {
ProjectExplorer::JsonWizardFactory::clearWizardPaths();
ProjectExplorer::JsonWizardFactory::addWizardPath(
Core::ICore::resourcePath("qmldesigner/studio_templates"));