From b38573f2da0d7de7f9e7abad3e03b666d65ac341 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Mon, 17 Jun 2013 14:01:21 +0200 Subject: Do not use don't, can't ... in output Don't, Can't, etc abbreviations are used in informal speech. This is okay in code comments etc, but user output should use the correct, non-abbreviated terms. Change-Id: I53c0dfa91596c151bfa7ef7b65f57d5084ceccde Reviewed-by: Karsten Heimrich Reviewed-by: Leena Miettinen --- tools/getrepositorycontent/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/getrepositorycontent') diff --git a/tools/getrepositorycontent/main.cpp b/tools/getrepositorycontent/main.cpp index 66a2ec43f..c84826359 100644 --- a/tools/getrepositorycontent/main.cpp +++ b/tools/getrepositorycontent/main.cpp @@ -221,7 +221,7 @@ QHash downLoadRepository(const QString &repositoryUrl, c itComponentData.next(); QString componentDirectory = QDir(repositoryTarget).filePath(itComponentData.key()); if (!QDir().mkpath(componentDirectory)) - qWarning() << "couldn't create:" << componentDirectory; + qWarning() << "could not create:" << componentDirectory; foreach (const QString &download, itComponentData.value().m_downloadDownloadableArchives) { const QString fileTarget(componentDirectory + QDir::separator() + download); @@ -377,7 +377,7 @@ int main(int argc, char *argv[]) QDir().mkpath(pathToTarget); QFile file; if (!file.copy(absoluteSourceFilePath, target)) { - qWarning() << QString::fromLatin1("copy file %1 to %2 wasn't working %3").arg( + qWarning() << QString::fromLatin1("copy file %1 to %2 was not working %3").arg( absoluteSourceFilePath, target, file.errorString()); } } -- cgit v1.2.3