diff options
author | Fawzi Mohamed <fawzi.mohamed@qt.io> | 2021-07-06 23:50:30 +0200 |
---|---|---|
committer | Fawzi Mohamed <fawzi.mohamed@qt.io> | 2021-07-20 09:02:15 +0000 |
commit | af88a7876b50ed9dd71e3fc7614eef5998908d03 (patch) | |
tree | 8d8345ea2962a11579b3802ce68df6732c290674 /src/libs/qmljs/qmljsmodelmanagerinterface.cpp | |
parent | dc654cfcba7f1c446ea1bd32e326d3f8c747cf4f (diff) | |
download | qt-creator-af88a7876b50ed9dd71e3fc7614eef5998908d03.tar.gz |
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 <fabian.kosmale@qt.io>
Diffstat (limited to 'src/libs/qmljs/qmljsmodelmanagerinterface.cpp')
-rw-r--r-- | src/libs/qmljs/qmljsmodelmanagerinterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/qmljs/qmljsmodelmanagerinterface.cpp b/src/libs/qmljs/qmljsmodelmanagerinterface.cpp index 8e5e74700e..d0d1d21138 100644 --- a/src/libs/qmljs/qmljsmodelmanagerinterface.cpp +++ b/src/libs/qmljs/qmljsmodelmanagerinterface.cpp @@ -811,7 +811,7 @@ static bool findNewQmlApplicationInPath(const QString &path, qmltypesFile = it.next(); - LibraryInfo libraryInfo = LibraryInfo(QmlDirParser::TypeInfo(qmltypesFile)); + LibraryInfo libraryInfo = LibraryInfo(qmltypesFile); const QString libraryPath = dir.absolutePath(); newLibraries->insert(libraryPath); modelManager->updateLibraryInfo(path, libraryInfo); |