RemoteLinux: Fix error message.

It's a pre-deployment check.

Change-Id: If110cf6bce00ea8c159c3ec60ccb19f8d6c0a997
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
This commit is contained in:
Christian Kandeler
2012-01-24 15:40:45 +01:00
parent 0fbd7f320f
commit b2b48bda89

View File

@@ -83,7 +83,7 @@ bool AbstractRemoteLinuxDeployStep::init()
deployService()->setBuildConfiguration(qobject_cast<Qt4ProjectManager::Qt4BuildConfiguration *>(target()->activeBuildConfiguration()));
const bool canDeploy = initInternal(&error);
if (!canDeploy)
emit addOutput(tr("Deployment failed: %1").arg(error), ErrorMessageOutput);
emit addOutput(tr("Cannot deploy: %1").arg(error), ErrorMessageOutput);
return canDeploy;
}