aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlcompiler/qqmljsimporter.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-10-02 14:07:05 +0200
committerUlf Hermann <ulf.hermann@qt.io>2020-10-05 14:59:08 +0200
commit4c1a1cc458d1addabea90f48d36998d7b3253fc2 (patch)
tree8493ee33469ad449c949c7e7ffa949b3a6257ac7 /src/qmlcompiler/qqmljsimporter.cpp
parent7fba749edc4b0b69df67316a4714337963b4f754 (diff)
QmlCompiler: Rename QmlJSTypeReader
Add an extra 'Q' for consistency. Change-Id: I81324f3b6e4d26a29f3bcc40b03abfa137292ea0 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qmlcompiler/qqmljsimporter.cpp')
-rw-r--r--src/qmlcompiler/qqmljsimporter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmlcompiler/qqmljsimporter.cpp b/src/qmlcompiler/qqmljsimporter.cpp
index f5effd61ba..d954d48420 100644
--- a/src/qmlcompiler/qqmljsimporter.cpp
+++ b/src/qmlcompiler/qqmljsimporter.cpp
@@ -28,7 +28,7 @@
#include "qqmljsimporter_p.h"
#include "typedescriptionreader_p.h"
-#include "qmljstypereader_p.h"
+#include "qqmljstypereader_p.h"
#include <QtQml/private/qqmlimportresolver_p.h>
@@ -233,7 +233,7 @@ QQmlJSScope::Ptr QQmlJSImporter::localFile2ScopeTree(const QString &filePath)
if (seen != m_importedFiles.end())
return *seen;
- QmlJSTypeReader typeReader(filePath);
+ QQmlJSTypeReader typeReader(filePath);
QQmlJSScope::Ptr result = typeReader();
m_importedFiles.insert(filePath, result);