QNX: Fixed updating package path if deploy configuration changes

The path to the BAR package in the run configuration did not react to changes in the deploy configuration.

Change-Id: I5eabbf600a3c0704ff4049edeceee67644c615df
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
Tobias Nätterlund
2012-08-30 14:23:20 +02:00
committed by Daniel Teske
parent f30111a6cb
commit e160d286f8

View File

@@ -64,6 +64,9 @@ BlackBerryRunConfiguration::BlackBerryRunConfiguration(ProjectExplorer::Target *
void BlackBerryRunConfiguration::init() void BlackBerryRunConfiguration::init()
{ {
updateDisplayName(); updateDisplayName();
connect(deployConfiguration()->deploymentInfo(), SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SIGNAL(targetInformationChanged()));
connect(deployConfiguration()->deploymentInfo(), SIGNAL(modelReset()), this, SIGNAL(targetInformationChanged()));
} }
void BlackBerryRunConfiguration::updateDisplayName() void BlackBerryRunConfiguration::updateDisplayName()