summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorNiels Weber <niels.2.weber@nokia.com>2012-03-20 16:35:27 +0100
committerNiels Weber <niels.2.weber@nokia.com>2012-03-20 16:55:39 +0100
commit0203bc6e1e612e6c1a580cab3ebc9e7bcac09636 (patch)
treef5845f709ce019b4bdf64c6ec1880d97c8ba3ad1 /tools
parentdf5ccaa64a1afef5a07ce66a627570117eac1649 (diff)
small cleanup in debug output
Change-Id: Ia74a334d5c08f9bf83ca20d003cf3b8a83e2776b Reviewed-by: Tim Jenssen <tim.jenssen@nokia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/common/repositorygen.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/common/repositorygen.cpp b/tools/common/repositorygen.cpp
index 90804326f..cd5996b76 100644
--- a/tools/common/repositorygen.cpp
+++ b/tools/common/repositorygen.cpp
@@ -283,8 +283,7 @@ void QInstallerTools::generateMetaDataDirectory(const QString &outDir, const QSt
}
for (QStringList::const_iterator ui = uis.begin(); ui != uis.end(); ++ui) {
- qDebug() << "\tCopying associated user interface " << *ui << " into the meta "
- "package...";
+ qDebug() << "\tCopying associated user interface" << *ui << "into the meta package...";
userinterfaces.push_back(*ui);
if (!QFile::copy(QString::fromLatin1("%1/meta/%2").arg(it->directory, *ui),
QString::fromLatin1("%1/%2/%3").arg(metapath, it->name, *ui))) {
@@ -319,8 +318,7 @@ void QInstallerTools::generateMetaDataDirectory(const QString &outDir, const QSt
}
for (QStringList::const_iterator qm = qms.begin(); qm != qms.end(); ++qm) {
- qDebug() << "\tCopying associated translation " << *qm << " into the meta "
- "package...";
+ qDebug() << "\tCopying associated translation" << *qm << "into the meta package...";
translations.push_back(*qm);
if (!QFile::copy(QString::fromLatin1("%1/meta/%2").arg(it->directory, *qm),
QString::fromLatin1("%1/%2/%3").arg(metapath, it->name, *qm))) {
@@ -354,8 +352,7 @@ void QInstallerTools::generateMetaDataDirectory(const QString &outDir, const QSt
"copying license files of %2.").arg(licenseFile, it->name));
}
- qDebug() << "\tCopying associated license file " << licenseFile << " into "
- "the meta package...";
+ qDebug() << "\tCopying associated license file" << licenseFile << "into the meta package...";
if (!QFile::copy(sourceFile, QString::fromLatin1("%1/%2/%3")
.arg(metapath, it->name, licenseFile))) {
qDebug() << "failed!";