summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/setexamplespathonqtoperation.cpp
diff options
context:
space:
mode:
authorNiels Weber <niels.weber@digia.com>2013-02-05 12:08:18 +0100
committerNiels Weber <niels.weber@digia.com>2013-02-07 16:43:33 +0100
commit1d7e30eca88a14c4a7a6333e51d70f8186c9e54a (patch)
tree4bf299eecc9793a3d4597e0f9df7d9be5a7d7c94 /src/libs/installer/setexamplespathonqtoperation.cpp
parentb32aa577b9647a79537e9218748c9987d2129728 (diff)
Typos, style and language improvements.
Change-Id: Ibc7d4ea8319b48b908adad75aa3a43858667cdde Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
Diffstat (limited to 'src/libs/installer/setexamplespathonqtoperation.cpp')
-rw-r--r--src/libs/installer/setexamplespathonqtoperation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/installer/setexamplespathonqtoperation.cpp b/src/libs/installer/setexamplespathonqtoperation.cpp
index e28443d43..49a24601d 100644
--- a/src/libs/installer/setexamplespathonqtoperation.cpp
+++ b/src/libs/installer/setexamplespathonqtoperation.cpp
@@ -82,8 +82,8 @@ bool SetExamplesPathOnQtOperation::performOperation()
if (qmakeValueHash.isEmpty()) {
setError(UserDefinedError);
- setErrorString(tr("The output of \n%1 -query\nis not parseable. Please file a bugreport with this "
- "dialog https://bugreports.qt-project.org.\noutput: %2").arg(QDir::toNativeSeparators(qmakePath),
+ setErrorString(tr("The output of \n'%1 -query'\nis not parseable. Please file a bugreport with this "
+ "dialog at https://bugreports.qt-project.org.\noutput: %2").arg(QDir::toNativeSeparators(qmakePath),
QString::fromUtf8(qmakeOutput)));
return false;
}
@@ -91,7 +91,7 @@ bool SetExamplesPathOnQtOperation::performOperation()
QByteArray oldValue = qmakeValueHash.value(QLatin1String("QT_INSTALL_EXAMPLES"));
bool oldQtPathFromQMakeIsEmpty = oldValue.isEmpty();
if (oldQtPathFromQMakeIsEmpty) {
- qDebug() << "qpatch: warning: It was not able to get the old values from" << qmakePath;
+ qDebug() << "qpatch: warning: It was not possible to get the old values from" << qmakePath;
}
if (newValue.size() >= 255) {