diff options
| author | hjk <hjk@qt.io> | 2019-03-07 10:10:22 +0100 |
|---|---|---|
| committer | hjk <hjk@qt.io> | 2019-03-11 12:40:51 +0000 |
| commit | 6faaea8d0c35c0c957784a5531762e971c2cca91 (patch) | |
| tree | 9138838092b555ae4960818d26ef965899d490c2 /src/plugins/pythoneditor/pythoneditorplugin.cpp | |
| parent | 9606e240f77801693e1ae30b1db8faf5b9531176 (diff) | |
| download | qt-creator-6faaea8d0c35c0c957784a5531762e971c2cca91.tar.gz | |
ProjectExplorer: Split EnvironmentAspect
... at least logically a bit more into hunks responsible for
one of the possible choices of base environments.
This makes it possible to move code that modifies individual
cases closer to the only place that uses it.
Change-Id: I1c87bb869e04e44b92ff097b0bf25274f93808be
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/pythoneditor/pythoneditorplugin.cpp')
| -rw-r--r-- | src/plugins/pythoneditor/pythoneditorplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/pythoneditor/pythoneditorplugin.cpp b/src/plugins/pythoneditor/pythoneditorplugin.cpp index f85d248a53..dd286f31cb 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.cpp +++ b/src/plugins/pythoneditor/pythoneditorplugin.cpp @@ -270,7 +270,7 @@ PythonRunConfiguration::PythonRunConfiguration(Target *target, Core::Id id) scriptAspect->setLabelText(tr("Script:")); scriptAspect->setDisplayStyle(BaseStringAspect::LabelDisplay); - addAspect<LocalEnvironmentAspect>(target, LocalEnvironmentAspect::BaseEnvironmentModifier()); + addAspect<LocalEnvironmentAspect>(target); addAspect<ArgumentsAspect>(); addAspect<TerminalAspect>(); |
