QNX: Fix UI text

Change-Id: Idb059a21bd85bb55b0d0596e024472e6fa3cfd36
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: James McDonnell <jmcdonnell@blackberry.com>
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Leena Miettinen
2019-03-01 17:14:20 +01:00
parent 2a7a4f08a3
commit 473352940f

View File

@@ -130,7 +130,7 @@ void QnxDeviceTester::handleVarRunProcessFinished(const QString &error)
m_result = TestFailure;
}
} else {
emit errorMessage(tr("An error occurred checking that"
emit errorMessage(tr("An error occurred while checking that"
" files can be created in /var/run.")
+ QLatin1Char('\n'));
m_result = TestFailure;
@@ -162,7 +162,7 @@ void QnxDeviceTester::handleProcessFinished(const QString &error)
m_result = TestFailure;
}
} else {
emit errorMessage(tr("An error occurred checking for %1.").arg(command) + QLatin1Char('\n'));
emit errorMessage(tr("An error occurred while checking for %1.").arg(command) + QLatin1Char('\n'));
m_result = TestFailure;
}
testNextCommand();