Python: Initialize settings in the pimpl

Change-Id: I172136851c3002bf785d9b8f378c0cccc408e0e2
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
hjk
2022-11-16 15:07:36 +01:00
parent 5c37cfc54b
commit 5688c84fcf
3 changed files with 6 additions and 13 deletions

View File

@@ -39,6 +39,8 @@ public:
{ProjectExplorer::Constants::NORMAL_RUN_MODE},
{runConfigFactory.runConfigurationId()}
};
PythonSettings settings;
};
PythonPlugin::PythonPlugin()
@@ -66,8 +68,6 @@ bool PythonPlugin::initialize(const QStringList &arguments, QString *errorMessag
ProjectManager::registerProjectType<PythonProject>(PythonMimeType);
PythonSettings::init();
return true;
}