From 7d8a5423a2f7011b66febe1acecdf26a8b5ef8f8 Mon Sep 17 00:00:00 2001 From: Pawel Polanski Date: Thu, 9 Sep 2010 13:43:29 +0200 Subject: Improved deployment information for Symbian --- src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp') 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() -- cgit v1.2.1