From aa5f2928a44f01e43acc4115b40fef0113fc8253 Mon Sep 17 00:00:00 2001 From: Christian Kandeler <christian.kandeler@nokia.com> Date: Fri, 9 Sep 2011 17:06:15 +0200 Subject: [PATCH] RemoteLinux: Change output at the end of a deploy step. "Deployment finished" is potentially misleading, as other steps might follow. Change-Id: I457b2c2427c65146b48e13bf9323ac11feee18db Reviewed-on: http://codereview.qt-project.org/4561 Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com> --- src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp index 5b85ef6125a..d9c89759018 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp +++ b/src/plugins/remotelinux/abstractremotelinuxdeploystep.cpp @@ -136,9 +136,9 @@ void AbstractRemoteLinuxDeployStep::handleErrorMessage(const QString &message) void AbstractRemoteLinuxDeployStep::handleFinished() { if (m_d->hasError) - emit addOutput(tr("Deployment failed."), ErrorMessageOutput); + emit addOutput(tr("Deploy step failed."), ErrorMessageOutput); else - emit addOutput(tr("Deployment finished."), MessageOutput); + emit addOutput(tr("Deploy step finished."), MessageOutput); disconnect(deployService(), 0, this, 0); m_d->future.reportResult(!m_d->hasError); emit finished(); -- GitLab