aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/referenceexamples/grouped/main.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2019-08-27 11:39:00 +0200
committerUlf Hermann <ulf.hermann@qt.io>2019-08-27 16:20:55 +0200
commit76282f480e0db0b308429324ebcab7f3abd1189e (patch)
tree602239a73652af16a779bdc31952331a6e2bff06 /examples/qml/referenceexamples/grouped/main.cpp
parent2ca41fb75721472bab1f9a4f4f9b2428fac7d60d (diff)
Use qmlRegisterAnonymousType in examples and tests
Change-Id: I511d18ad8f73ea77a208e4448a8f86e5be5facc3 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'examples/qml/referenceexamples/grouped/main.cpp')
-rw-r--r--examples/qml/referenceexamples/grouped/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/qml/referenceexamples/grouped/main.cpp b/examples/qml/referenceexamples/grouped/main.cpp
index 14cd64fe68..a237006e29 100644
--- a/examples/qml/referenceexamples/grouped/main.cpp
+++ b/examples/qml/referenceexamples/grouped/main.cpp
@@ -59,8 +59,8 @@ int main(int argc, char ** argv)
QCoreApplication app(argc, argv);
qmlRegisterType<BirthdayParty>("People", 1,0, "BirthdayParty");
- qmlRegisterType<ShoeDescription>();
- qmlRegisterType<Person>();
+ qmlRegisterAnonymousType<ShoeDescription>("People", 1);
+ qmlRegisterAnonymousType<Person>("People", 1);
qmlRegisterType<Boy>("People", 1,0, "Boy");
qmlRegisterType<Girl>("People", 1,0, "Girl");