summaryrefslogtreecommitdiff
path: root/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp
diff options
context:
space:
mode:
authorPawel Polanski <pawel.3.polanski@nokia.com>2010-09-09 13:43:29 +0200
committerPawel Polanski <pawel.3.polanski@nokia.com>2010-09-09 14:04:54 +0200
commit7d8a5423a2f7011b66febe1acecdf26a8b5ef8f8 (patch)
tree1c43e80bf2d6adb459f39e32d9cb3a6fa9f173f9 /src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp
parent628afc5ac143bf00340abb994cd8afbc6ff847e2 (diff)
downloadqt-creator-7d8a5423a2f7011b66febe1acecdf26a8b5ef8f8.tar.gz
Improved deployment information for Symbian
Diffstat (limited to 'src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp')
-rw-r--r--src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp b/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp
index a91b613557..2e1ad5abad 100644
--- a/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp
+++ b/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp
@@ -244,11 +244,11 @@ void S60DeployStep::setupConnections()
connect(m_launcher, SIGNAL(finished()), this, SLOT(launcherFinished()));
connect(m_launcher, SIGNAL(canNotConnect(QString)), this, SLOT(connectFailed(QString)));
- connect(m_launcher, SIGNAL(copyingStarted()), this, SLOT(printCopyingNotice()));
+ connect(m_launcher, SIGNAL(copyingStarted(QString)), this, SLOT(printCopyingNotice(QString)));
connect(m_launcher, SIGNAL(canNotCreateFile(QString,QString)), this, SLOT(createFileFailed(QString,QString)));
connect(m_launcher, SIGNAL(canNotWriteFile(QString,QString)), this, SLOT(writeFileFailed(QString,QString)));
connect(m_launcher, SIGNAL(canNotCloseFile(QString,QString)), this, SLOT(closeFileFailed(QString,QString)));
- connect(m_launcher, SIGNAL(installingStarted()), this, SLOT(printInstallingNotice()));
+ connect(m_launcher, SIGNAL(installingStarted(QString)), this, SLOT(printInstallingNotice(QString)));
connect(m_launcher, SIGNAL(canNotInstall(QString,QString)), this, SLOT(installFailed(QString,QString)));
connect(m_launcher, SIGNAL(installingFinished()), this, SLOT(printInstallingFinished()));
connect(m_launcher, SIGNAL(stateChanged(int)), this, SLOT(slotLauncherStateChanged(int)));
@@ -359,14 +359,14 @@ void S60DeployStep::connectFailed(const QString &errorMessage)
m_deployResult = false;
}
-void S60DeployStep::printCopyingNotice()
+void S60DeployStep::printCopyingNotice(const QString &fileName)
{
- appendMessage(tr("Copying installation file..."), false);
+ appendMessage(tr("Copying \"%1\"...").arg(fileName), false);
}
-void S60DeployStep::printInstallingNotice()
+void S60DeployStep::printInstallingNotice(const QString &packageName)
{
- appendMessage(tr("Installing application on drive %1:...").arg(m_installationDrive), false);
+ appendMessage(tr("Installing package \"%1\" on drive %2:...").arg(packageName).arg(m_installationDrive), false);
}
void S60DeployStep::printInstallingFinished()