summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-11-23 11:55:38 +0100
committerChristian Kandeler <christian.kandeler@nokia.com>2011-11-23 13:14:12 +0100
commit60830e000bce3fefa7d0d3adf15e8d57fb7e9f55 (patch)
treed30a9b677c1634c6710b112b551d2976cad077c2 /src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp
parent7bafb8adfa0b9f6fd6801b99e5e4e4afee9464b3 (diff)
downloadqt-creator-60830e000bce3fefa7d0d3adf15e8d57fb7e9f55.tar.gz
RemoteLinux: Rename and unconstify deploy step function.
The name "isDeploymentPossible" was misleading, as was the const modifier. Change-Id: Iccaa307133f56ab02a8d6054b0ca9bf660e0d30d Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp')
-rw-r--r--src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp
index 9f3bcabe1b..bdf98dec22 100644
--- a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp
+++ b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp
@@ -82,7 +82,7 @@ bool AbstractRemoteLinuxDeployStep::init()
QString error;
deployService()->setDeviceConfiguration(deployConfiguration()->deviceConfiguration());
deployService()->setBuildConfiguration(qobject_cast<Qt4ProjectManager::Qt4BuildConfiguration *>(target()->activeBuildConfiguration()));
- const bool canDeploy = isDeploymentPossible(&error);
+ const bool canDeploy = initInternal(&error);
if (!canDeploy)
emit addOutput(tr("Deployment failed: %1").arg(error), ErrorMessageOutput);
return canDeploy;