aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlcompiler/qqmljsimporter.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-10-02 14:21:42 +0200
committerUlf Hermann <ulf.hermann@qt.io>2020-10-05 14:59:14 +0200
commit770aa2aa73303063e21ae2053ce1b37a0673344e (patch)
treec9cea51a2aa4e0fc2b1ea929497dfb72f8d753ea /src/qmlcompiler/qqmljsimporter.cpp
parent4c1a1cc458d1addabea90f48d36998d7b3253fc2 (diff)
QmlCompiler: Rename TypeDescriptionReader
The names should begin with a common prefix. Change-Id: Ibd832ebe7a778c7af8ee3b75253e04491ded28be 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 d954d48420..02d32b4bcb 100644
--- a/src/qmlcompiler/qqmljsimporter.cpp
+++ b/src/qmlcompiler/qqmljsimporter.cpp
@@ -27,7 +27,7 @@
****************************************************************************/
#include "qqmljsimporter_p.h"
-#include "typedescriptionreader_p.h"
+#include "qqmljstypedescriptionreader_p.h"
#include "qqmljstypereader_p.h"
#include <QtQml/private/qqmlimportresolver_p.h>
@@ -69,7 +69,7 @@ void QQmlJSImporter::readQmltypes(
QFile file(filename);
file.open(QFile::ReadOnly);
- TypeDescriptionReader reader { filename, QString::fromUtf8(file.readAll()) };
+ QQmlJSTypeDescriptionReader reader { filename, QString::fromUtf8(file.readAll()) };
QStringList dependencies;
auto succ = reader(objects, &dependencies);
if (!succ)