Use separate varible to fix compilation on FreeBSD
@ -509,7 +509,8 @@ Profile::Ptr Application::processProfileChangeArgs(Profile::Ptr baseProfile)
}
// temporary changes to profile options specified on the command line
foreach (const QString &value, m_parser->values(QLatin1String("p"))) {
const QStringList profileProperties = m_parser->values(QStringLiteral("p"));
foreach (const QString &value, profileProperties) {
ProfileCommandParser parser;
QHashIterator<Profile::Property, QVariant> iter(parser.parse(value));