More changes to QLatin1String, QLatin1Char and QStringLiteral

This commit is contained in:
Kurt Hindenburg
2017-05-07 14:25:35 -04:00
parent 80321deea3
commit b4b4a502bf
8 changed files with 19 additions and 19 deletions

View File

@@ -48,7 +48,7 @@ QString ShellCommand::fullCommand() const
if (hasSpace)
quotedArgs[i] = '\"' + arg + '\"';
}
return quotedArgs.join(QChar(' '));
return quotedArgs.join(QLatin1Char(' '));
}
QString ShellCommand::command() const
{