summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/setexamplespathonqtoperation.cpp
diff options
context:
space:
mode:
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) {