OSDN Git Service

RemoteLinux: Change output at the end of a deploy step.
authorChristian Kandeler <christian.kandeler@nokia.com>
Fri, 9 Sep 2011 15:06:15 +0000 (17:06 +0200)
committerChristian Kandeler <christian.kandeler@nokia.com>
Fri, 9 Sep 2011 15:09:47 +0000 (17:09 +0200)
"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

index 5b85ef6..d9c8975 100644 (file)
@@ -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();