From b2b48bda8906297c89596be0cbc367d62a4224ea Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 24 Jan 2012 15:40:45 +0100 Subject: [PATCH] RemoteLinux: Fix error message. It's a pre-deployment check. Change-Id: If110cf6bce00ea8c159c3ec60ccb19f8d6c0a997 Reviewed-by: Christian Kandeler --- src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp index 4140a1b9532..61bedafa6a9 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp +++ b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp @@ -83,7 +83,7 @@ bool AbstractRemoteLinuxDeployStep::init() deployService()->setBuildConfiguration(qobject_cast(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; }