mirror of
https://github.com/KDE/konsole.git
synced 2026-06-11 07:26:10 -04:00
revert back to QLatin1String
On FreeBSD, QStringLiteral here generates this error:
512:53: error: lambda expression in an unevaluated operand
foreach (const QString &value, m_parser->values(QStringLiteral("p"))) {
This commit is contained in:
@@ -509,7 +509,7 @@ Profile::Ptr Application::processProfileChangeArgs(Profile::Ptr baseProfile)
|
||||
}
|
||||
|
||||
// temporary changes to profile options specified on the command line
|
||||
foreach (const QString &value, m_parser->values(QStringLiteral("p"))) {
|
||||
foreach (const QString &value, m_parser->values(QLatin1String("p"))) {
|
||||
ProfileCommandParser parser;
|
||||
|
||||
QHashIterator<Profile::Property, QVariant> iter(parser.parse(value));
|
||||
|
||||
Reference in New Issue
Block a user