From 7cd1dd536729f12e0f852ce73e8fb2a886aadbfa Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Wed, 3 Jan 2018 09:34:14 -0500 Subject: [PATCH] QLatin1String -> QStringLiteral --- src/Application.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Application.cpp b/src/Application.cpp index d827a5599..da96b7afe 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -142,7 +142,7 @@ void Application::populateCommandLineParser(QCommandLineParser *parser) QStringList Application::getCustomCommand(QStringList &args) { - int i = args.indexOf(QLatin1String("-e")); + int i = args.indexOf(QStringLiteral("-e")); QStringList customCommand; if ((0 < i) && (i < (args.size() - 1))) { // -e was specified with at least one extra argument @@ -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(QLatin1String("p"))) { + foreach (const QString &value, m_parser->values(QStringLiteral("p"))) { ProfileCommandParser parser; QHashIterator iter(parser.parse(value));