From 0876dc4d6abb147ccdcc190adfad01c704a73e61 Mon Sep 17 00:00:00 2001 From: Denis Shienkov Date: Tue, 19 Feb 2019 22:16:04 +0300 Subject: Use QStringLiteral more where it is possible Change-Id: I7419cc3fbc1e8776de3943852dcedab4c95d1c32 Reviewed-by: Anton Kudryavtsev Reviewed-by: Christian Kandeler --- src/lib/corelib/tools/qbspluginmanager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/corelib/tools/qbspluginmanager.cpp') diff --git a/src/lib/corelib/tools/qbspluginmanager.cpp b/src/lib/corelib/tools/qbspluginmanager.cpp index d0be73891..d4e92e22a 100644 --- a/src/lib/corelib/tools/qbspluginmanager.cpp +++ b/src/lib/corelib/tools/qbspluginmanager.cpp @@ -125,11 +125,11 @@ void QbsPluginManager::loadPlugins(const std::vector &pluginPaths, QStringList filters; if (HostOsInfo::isWindowsHost()) - filters << QLatin1String("*.dll"); + filters << QStringLiteral("*.dll"); else if (HostOsInfo::isMacosHost()) - filters << QLatin1String("*.bundle") << QLatin1String("*.dylib"); + filters << QStringLiteral("*.bundle") << QStringLiteral("*.dylib"); else - filters << QLatin1String("*.so"); + filters << QStringLiteral("*.so"); for (const std::string &pluginPath : pluginPaths) { const QString qtPluginPath = QString::fromStdString(pluginPath); -- cgit v1.2.3