mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-07 11:05:33 +08:00
Ref T480 No need for QStringLiteral when concatenating with %, use UTF-16 string literals.
This commit is contained in:
@@ -64,13 +64,13 @@ namespace BlackMisc
|
||||
|
||||
QString CDistribution::convertToQString(const QString &separator, bool i18n) const
|
||||
{
|
||||
return QLatin1String("channel: ") %
|
||||
return u"channel: " %
|
||||
this->getChannel() %
|
||||
separator %
|
||||
QLatin1String("download URLs: ") %
|
||||
u"download URLs: " %
|
||||
getDownloadUrls().toQString(i18n) %
|
||||
separator %
|
||||
QLatin1String("timestamp: ") %
|
||||
u"timestamp: " %
|
||||
this->getFormattedUtcTimestampYmdhms();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user