From e160d286f88c7e415e72afe736bf147049c0e322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20N=C3=A4tterlund?= Date: Thu, 30 Aug 2012 14:23:20 +0200 Subject: [PATCH] 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 --- src/plugins/qnx/blackberryrunconfiguration.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/qnx/blackberryrunconfiguration.cpp b/src/plugins/qnx/blackberryrunconfiguration.cpp index 45cc0fbb39e..7393525f3b1 100644 --- a/src/plugins/qnx/blackberryrunconfiguration.cpp +++ b/src/plugins/qnx/blackberryrunconfiguration.cpp @@ -64,6 +64,9 @@ BlackBerryRunConfiguration::BlackBerryRunConfiguration(ProjectExplorer::Target * void BlackBerryRunConfiguration::init() { updateDisplayName(); + + connect(deployConfiguration()->deploymentInfo(), SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SIGNAL(targetInformationChanged())); + connect(deployConfiguration()->deploymentInfo(), SIGNAL(modelReset()), this, SIGNAL(targetInformationChanged())); } void BlackBerryRunConfiguration::updateDisplayName()