mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 10:15:38 +08:00
When calling arg() on a QString constructed from a literal, use QStringLiteral.
This commit is contained in:
@@ -183,7 +183,7 @@ namespace BlackGui
|
||||
void CSetupLoadingDialog::displayOtherVersionsInfo()
|
||||
{
|
||||
const int other = CDirectoryUtils::applicationDataDirectoriesCount() - 1 ;
|
||||
ui->le_OtherSwiftVersions->setText(QString("There is/are %1 other swift version(s) installed").arg(other));
|
||||
ui->le_OtherSwiftVersions->setText(QStringLiteral("There is/are %1 other swift version(s) installed").arg(other));
|
||||
ui->pb_CopyFromSwift->setEnabled(other > 0);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user