aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/genericdirectuploadstep.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-11-22 18:17:07 +0100
committerChristian Kandeler <christian.kandeler@nokia.com>2011-11-22 18:22:23 +0100
commit5211256549d4ece7d40d883d0e52e49a72c2f477 (patch)
tree6922eb448254cea328275be44ef718586234361e /src/plugins/remotelinux/genericdirectuploadstep.cpp
parentc43415e4ea6b52fa7d026ce076346ee2218eafef (diff)
RemoteLinux: Don't make presence of device an absolute prerequisite ...
... for deployment and running. Rationale: An emulator might get started on-demand during deployment and get auto-detected in the process. Change-Id: Id95ccccbf4d570f9fa69a6ed3a8a473fd63c5968 Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/genericdirectuploadstep.cpp')
-rw-r--r--src/plugins/remotelinux/genericdirectuploadstep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/genericdirectuploadstep.cpp b/src/plugins/remotelinux/genericdirectuploadstep.cpp
index 9c9ff6807ad..fe2afb4bd36 100644
--- a/src/plugins/remotelinux/genericdirectuploadstep.cpp
+++ b/src/plugins/remotelinux/genericdirectuploadstep.cpp
@@ -126,7 +126,7 @@ bool GenericDirectUploadStep::isDeploymentPossible(QString *whyNot) const
deployableFiles << deploymentInfo->deployableAt(i);
deployService()->setDeployableFiles(deployableFiles);
deployService()->setIncrementalDeployment(incrementalDeployment());
- return AbstractRemoteLinuxDeployStep::isDeploymentPossible(whyNot);
+ return deployService()->isDeploymentPossible(whyNot);
}
GenericDirectUploadService *GenericDirectUploadStep::deployService() const