From af88a7876b50ed9dd71e3fc7614eef5998908d03 Mon Sep 17 00:00:00 2001 From: Fawzi Mohamed Date: Tue, 6 Jul 2021 23:50:30 +0200 Subject: qmljs: update Qml parser to parser of Qt 6.2 this is needed (among other things) for * null coalescing * shebang support Change-Id: I1b37fd86593f143de8b39c0daf433831a8785568 Reviewed-by: Fabian Kosmale --- src/libs/qmljs/qmljsplugindumper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libs/qmljs/qmljsplugindumper.cpp') diff --git a/src/libs/qmljs/qmljsplugindumper.cpp b/src/libs/qmljs/qmljsplugindumper.cpp index 376166559f..a131b4763a 100644 --- a/src/libs/qmljs/qmljsplugindumper.cpp +++ b/src/libs/qmljs/qmljsplugindumper.cpp @@ -154,8 +154,8 @@ void PluginDumper::onLoadPluginTypes(const QString &libraryPath, const QString & } // add typeinfo files listed in qmldir - foreach (const QmlDirParser::TypeInfo &typeInfo, libraryInfo.typeInfos()) { - QString pathNow = makeAbsolute(typeInfo.fileName, canonicalLibraryPath); + foreach (const QString &typeInfo, libraryInfo.typeInfos()) { + QString pathNow = makeAbsolute(typeInfo, canonicalLibraryPath); if (!plugin.typeInfoPaths.contains(pathNow) && QFile::exists(pathNow)) plugin.typeInfoPaths += pathNow; } -- cgit v1.2.3