From 2d7b3bf4a06f63f4ae9f2d863279bdae70a6b19d Mon Sep 17 00:00:00 2001
From: ck <qt-info@nokia.com>
Date: Wed, 14 Apr 2010 12:44:33 +0200
Subject: [PATCH] Maemo: Change misleading status messages.

---
 src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp
index e3af8e3db7a..0e75d1b6def 100644
--- a/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp
+++ b/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp
@@ -262,10 +262,10 @@ void AbstractMaemoRunControl::handleRunThreadFinished()
         emit addToOutputWindow(this,
                  tr("Remote execution canceled due to user request."));
     } else if (m_sshRunner->hasError()) {
-        emit addToOutputWindow(this, tr("Remote process exited with error: %1")
+        emit addToOutputWindow(this, tr("Error running remote process: %1")
                                          .arg(m_sshRunner->error()));
     } else {
-        emit addToOutputWindow(this, tr("Remote process finished successfully."));
+        emit addToOutputWindow(this, tr("Finished running remote process."));
     }
     emit finished();
 }
-- 
GitLab