diff options
Diffstat (limited to 'src/plugins/pythoneditor/pythoneditorplugin.cpp')
-rw-r--r-- | src/plugins/pythoneditor/pythoneditorplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/pythoneditor/pythoneditorplugin.cpp b/src/plugins/pythoneditor/pythoneditorplugin.cpp index c579b8526a..c5aa2e1eb8 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.cpp +++ b/src/plugins/pythoneditor/pythoneditorplugin.cpp @@ -338,8 +338,8 @@ PythonRunConfigurationWidget::PythonRunConfigurationWidget(PythonRunConfiguratio fl->addRow(PythonRunConfiguration::tr("Interpreter: "), interpreterChooser); fl->addRow(PythonRunConfiguration::tr("Script: "), scriptLabel); - runConfiguration->extraAspect<ArgumentsAspect>()->addToMainConfigurationWidget(this, fl); - runConfiguration->extraAspect<TerminalAspect>()->addToMainConfigurationWidget(this, fl); + runConfiguration->extraAspect<ArgumentsAspect>()->addToConfigurationLayout(fl); + runConfiguration->extraAspect<TerminalAspect>()->addToConfigurationLayout(fl); connect(runConfiguration->target(), &Target::applicationTargetsChanged, this, [this, scriptLabel] { scriptLabel->setText(QDir::toNativeSeparators(m_runConfiguration->mainScript())); |