diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp index e3af8e3db7a647b99b2e29fcaa0c81c404fc0c50..0e75d1b6def06882112ba72982acf23b3e86a732 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(); }