aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.h
diff options
context:
space:
mode:
authorMaximilian Goldstein <max.goldstein@qt.io>2021-08-30 16:41:57 +0200
committerMaximilian Goldstein <max.goldstein@qt.io>2021-08-31 11:26:11 +0200
commitae36668632ce796eb043a552780f55f83bfed448 (patch)
tree5cd849fa7bcb9fac82b057ac1fc95afb287c6bf5 /tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.h
parent405bbc1c0e12e888807ff458c6df600968420e83 (diff)
typeregistrar: Fix deferred names classinfo check
Change-Id: I0132d3922bf8c315119772910882b969e56eaa0e Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.h')
-rw-r--r--tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.h b/tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.h
index feb8fd2a03..63766bc8bc 100644
--- a/tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.h
+++ b/tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.h
@@ -406,14 +406,14 @@ struct DeferredPropertyNamesEmpty : public QObject
{
Q_OBJECT
QML_ELEMENT
- Q_CLASSINFO("QML.DeferredPropertyNames", "")
+ Q_CLASSINFO("DeferredPropertyNames", "")
};
struct DeferredPropertyNames : public QObject
{
Q_OBJECT
QML_ELEMENT
- Q_CLASSINFO("QML.DeferredPropertyNames", "A,B,C")
+ Q_CLASSINFO("DeferredPropertyNames", "A,B,C")
};
namespace ForeignNamespace