aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmllint/checkidentifiers.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qmllint/checkidentifiers.h')
-rw-r--r--tools/qmllint/checkidentifiers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qmllint/checkidentifiers.h b/tools/qmllint/checkidentifiers.h
index 653b398301..bdd83f1e57 100644
--- a/tools/qmllint/checkidentifiers.h
+++ b/tools/qmllint/checkidentifiers.h
@@ -38,7 +38,7 @@ class CheckIdentifiers
{
public:
CheckIdentifiers(ColorOutput *colorOut, const QString &code,
- const FindWarningVisitor::ImportedTypes &types, const QString &fileName) :
+ const QmlJSImporter::ImportedTypes &types, const QString &fileName) :
m_colorOut(colorOut), m_code(code), m_types(types), m_fileName(fileName)
{}
@@ -53,7 +53,7 @@ private:
ColorOutput *m_colorOut = nullptr;
QString m_code;
- FindWarningVisitor::ImportedTypes m_types;
+ QmlJSImporter::ImportedTypes m_types;
QString m_fileName;
};