summaryrefslogtreecommitdiff
path: root/examples/bluetooth/heartrate-game/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bluetooth/heartrate-game/main.cpp')
-rw-r--r--examples/bluetooth/heartrate-game/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/bluetooth/heartrate-game/main.cpp b/examples/bluetooth/heartrate-game/main.cpp
index 9722a82f..5e853a4f 100644
--- a/examples/bluetooth/heartrate-game/main.cpp
+++ b/examples/bluetooth/heartrate-game/main.cpp
@@ -44,12 +44,12 @@ int main(int argc, char *argv[])
DeviceHandler deviceHandler;
DeviceFinder deviceFinder(&deviceHandler);
- qmlRegisterUncreatableType<DeviceHandler>("Shared", 1, 0, "AddressType", "Enum is not a type");
-
QQmlApplicationEngine engine;
- engine.rootContext()->setContextProperty("connectionHandler", &connectionHandler);
- engine.rootContext()->setContextProperty("deviceFinder", &deviceFinder);
- engine.rootContext()->setContextProperty("deviceHandler", &deviceHandler);
+ engine.setInitialProperties({
+ {"connectionHandler", QVariant::fromValue(&connectionHandler)},
+ {"deviceFinder", QVariant::fromValue(&deviceFinder)},
+ {"deviceHandler", QVariant::fromValue(&deviceHandler)}
+ });
engine.load(QUrl(QStringLiteral("qrc:/qml/main.qml")));
if (engine.rootObjects().isEmpty())