tidy code by fixing one clazy reported warning

use QString::arg with multiple parameters because that is faster

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
This commit is contained in:
Matthieu Gallien 2022-11-17 14:48:51 +01:00
Родитель 9a2f07d53b
Коммит 2742c6a5a1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7D0F74F05C22F553
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -244,8 +244,7 @@ void PropagateLocalRename::start()
// it would have to come out the localFileNameClash function
done(SyncFileItem::NormalError,
tr("File %1 cannot be renamed to %2 because of a local file name clash")
.arg(QDir::toNativeSeparators(_item->_file))
.arg(QDir::toNativeSeparators(_item->_renameTarget)));
.arg(QDir::toNativeSeparators(_item->_file), QDir::toNativeSeparators(_item->_renameTarget)));
return;
}