summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2012-03-19 17:35:44 +0100
committerChristian Kandeler <christian.kandeler@nokia.com>2012-03-29 18:47:59 +0200
commit5ef51887dbfa55eb435cb811c97a8169bb6c4319 (patch)
treeeb015e9eb06dd3bcc154f8ea38b1394146756ee5 /src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp
parent63244127a88010abe98858be8d42c93f1755b537 (diff)
downloadqt-creator-5ef51887dbfa55eb435cb811c97a8169bb6c4319.tar.gz
RemoteLinux: Make mapping between targets and devices more flexible.
Until now, the mapping was based exclusively on the device type. The new approach is more flexible and less static, allowing e.g. the set of supported devices to depend on the current build settings. Change-Id: Iec92bdf9fee647477b166f7624c2364a821e5cbd Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp')
-rw-r--r--src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp b/src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp
index c93de9ecab..7c77a918f6 100644
--- a/src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp
+++ b/src/plugins/remotelinux/remotelinuxdeployconfiguration.cpp
@@ -82,7 +82,7 @@ RemoteLinuxDeployConfiguration::~RemoteLinuxDeployConfiguration()
void RemoteLinuxDeployConfiguration::initialize()
{
d->deviceConfiguration = target()->deviceConfigModel()->defaultDeviceConfig();
- connect(target()->deviceConfigModel(), SIGNAL(updated()),
+ connect(target()->deviceConfigModel(), SIGNAL(modelReset()),
SLOT(handleDeviceConfigurationListUpdated()));
}