compiler warning fix

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2020-10-25 19:38:42 +02:00
parent 3010ef89f1
commit 92b4db5509

View file

@ -808,7 +808,7 @@ QString QDeclarativeImportDatabase::resolvePlugin(const QDir &qmldirPath, const
}
// hack for resources, should probably go away
if (resolvedPath.startsWith(QLatin1String(':/')))
if (resolvedPath.startsWith(QLatin1String(":/")))
resolvedPath = QCoreApplication::applicationDirPath();
QDir dir(resolvedPath);