mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 01:05:34 +08:00
When calling arg() on a QString constructed from a literal, use QStringLiteral.
This commit is contained in:
@@ -51,7 +51,7 @@ namespace BlackMisc
|
||||
|
||||
QString CPropertyIndexVariantMap::convertToQString(bool i18n) const
|
||||
{
|
||||
if (this->isEmpty()) return QString("{wildcard: %1}").arg(m_wildcard ? "true" : "false");
|
||||
if (this->isEmpty()) return QStringLiteral("{wildcard: %1}").arg(m_wildcard ? "true" : "false");
|
||||
QString s;
|
||||
for (const CPropertyIndex &index : makeKeysRange(m_values))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user