libcalamares: fix build

This commit is contained in:
Adriaan de Groot 2023-10-22 14:38:25 +02:00
parent f81383901d
commit e5c2066d28

View File

@ -36,7 +36,9 @@ ProcessJob::~ProcessJob() {}
QString
ProcessJob::prettyName() const
{
return ( m_runInChroot ? "Run command '%1' in target system" : "Run command '%1'" ).arg( m_command );
return ( m_runInChroot ? QStringLiteral( "Run command '%1' in target system" )
: QStringLiteral( "Run command '%1'" ) )
.arg( m_command );
}
QString