Commit f831c97a authored by André Klitzing's avatar André Klitzing
Browse files

Replace QStringLiteral with QLatin1String in QFileSelector


Change-Id: I5c109d26bf5252947ae016465db5675e38cd68c9
Reviewed-by: default avatarMarc Mutz <marc.mutz@kdab.com>
parent b5447f9c
No related merge requests found
Showing with 2 additions and 2 deletions
......@@ -227,9 +227,9 @@ QString QFileSelector::select(const QString &filePath) const
static bool isLocalScheme(const QString &file)
{
bool local = file == QStringLiteral("qrc");
bool local = file == QLatin1String("qrc");
#ifdef Q_OS_ANDROID
local |= file == QStringLiteral("assets");
local |= file == QLatin1String("assets");
#endif
return local;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment