QtGui: Replace QStringLiteral("...").arg with "..."_L1.arg

This commit addresses a comment from the review of QTBUG-98434.

QL1S has its own arg()s, replace QStringLiteral("...").arg with
"..."_L1.arg.

Task-number: QTBUG-103100
Change-Id: I5313783e36101a9a65c7d5a2344ca46614658b80
Reviewed-by: Sona Kurazyan <sona.kurazyan@qt.io>
bb10
Mate Barany 2022-09-16 14:29:24 +02:00
parent c633f4644c
commit 266eb124a2
1 changed files with 1 additions and 1 deletions

View File

@ -1209,7 +1209,7 @@ static void init_platform(const QString &pluginNamesWithArguments, const QString
"Reinstalling the application may fix this problem.\n");
if (!availablePlugins.isEmpty())
fatalMessage += QStringLiteral("\nAvailable platform plugins are: %1.\n").arg(availablePlugins.join(", "_L1));
fatalMessage += "\nAvailable platform plugins are: %1.\n"_L1.arg(availablePlugins.join(", "_L1));
#if defined(Q_OS_WIN)
// Windows: Display message box unless it is a console application