ios: correcly update executable path in the ui

changing the build directory did not update the path shown in the
run configuration ui (but the correct one would be used)

Task-number: QTCREATORBUG-11080
Change-Id: I4105cb6ffd21bffe59e9bbbccdf427caf88646d6
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Fawzi Mohamed
2013-12-16 13:38:19 +01:00
parent b1e871e9b0
commit 293d4d9a6d

View File

@@ -201,7 +201,9 @@ IosRunConfigurationWidget::IosRunConfigurationWidget(IosRunConfiguration *runCon
updateValues();
connect(m_ui->argumentsLineEdit, SIGNAL(editingFinished()),
this, SLOT(argumentsLineEditTextEdited()));
SLOT(argumentsLineEditTextEdited()));
connect(runConfiguration->target(), SIGNAL(buildDirectoryChanged()),
SLOT(updateValues()));
}
IosRunConfigurationWidget::~IosRunConfigurationWidget()