QbsPM: Fix signal signature

Change-Id: I15dcf51522c6eb36f6a7fa1288748fc43b7185ee
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
This commit is contained in:
Orgad Shaneh
2014-06-16 11:05:12 +03:00
committed by Orgad Shaneh
parent 5223f0d8a2
commit 28985eb5a1

View File

@@ -140,7 +140,7 @@ void QbsRunConfiguration::ctor()
connect(project, SIGNAL(projectParsingStarted()), this, SIGNAL(enabledChanged()));
connect(project, SIGNAL(projectParsingDone(bool)), this, SIGNAL(enabledChanged()));
connect(target(), SIGNAL(activeDeployConfigurationChanged(DeployConfiguration*)),
connect(target(), SIGNAL(activeDeployConfigurationChanged(ProjectExplorer::DeployConfiguration*)),
this, SLOT(installStepChanged()));
installStepChanged();
@@ -495,7 +495,7 @@ void QbsRunConfigurationWidget::commandLineArgumentsChanged(const QString &args)
void QbsRunConfigurationWidget::runModeChanged(ApplicationLauncher::Mode runMode)
{
if (!m_ignoreChange)
m_useTerminalCheck->setChecked(runMode == ProjectExplorer::ApplicationLauncher::Console);
m_useTerminalCheck->setChecked(runMode == ApplicationLauncher::Console);
}
// --------------------------------------------------------------------