2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-10-07 13:26:47 +00:00

Avoid multiple .arg usage as suggested by clazy

This commit is contained in:
Ilya Fedin
2021-03-13 15:50:34 +04:00
committed by John Preston
parent d9771d0f88
commit c4dcf064d5
35 changed files with 161 additions and 149 deletions

View File

@@ -15,7 +15,7 @@ namespace {
QString GetEnv(const char *name) {
auto value = qEnvironmentVariable(name);
LOG(("Getting DE, %1: '%2'").arg(name).arg(value));
LOG(("Getting DE, %1: '%2'").arg(name, value));
return value;
}