From 60830e000bce3fefa7d0d3adf15e8d57fb7e9f55 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Wed, 23 Nov 2011 11:55:38 +0100 Subject: RemoteLinux: Rename and unconstify deploy step function. The name "isDeploymentPossible" was misleading, as was the const modifier. Change-Id: Iccaa307133f56ab02a8d6054b0ca9bf660e0d30d Reviewed-by: Christian Kandeler --- src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp') 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(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; -- cgit v1.2.1