Utils: Use multi-arg for strings

Change-Id: I57d87b8f0435c7b304c484ad4d728b59780f212d
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Jarek Kobus
2023-01-10 23:54:26 +01:00
parent ed3d75b044
commit 398b5656b4
5 changed files with 14 additions and 21 deletions

View File

@@ -399,7 +399,7 @@ void TerminalImpl::start()
if (!d->m_process.waitForStarted()) {
const QString msg = QtcProcess::tr("Cannot start the terminal emulator \"%1\", change the "
"setting in the Environment preferences. (%2)")
.arg(terminal.command).arg(d->m_process.errorString());
.arg(terminal.command, d->m_process.errorString());
cleanupAfterStartFailure(msg);
return;
}