Fixing misname

This commit is contained in:
Brad Davis 2017-11-15 12:24:00 -08:00
parent bb2e061d77
commit 0ad3999741

View file

@ -394,7 +394,7 @@ void initializeQmlEngine(QQmlEngine* engine, QQuickWindow* window) {
rootContext->setContextProperty("Tablet", DependencyManager::get<TabletScriptingInterface>().data());
rootContext->setContextProperty("Toolbars", DependencyManager::get<ToolbarScriptingInterface>().data());
TabletProxy* tablet = DependencyManager::get<TabletScriptingInterface>()->getTablet("com.highfidelity.interface.tablet.system");
myContext->engine()->setObjectOwnership(tablet, QQmlEngine::CppOwnership);
engine->setObjectOwnership(tablet, QQmlEngine::CppOwnership);
}
QQmlEngine* acquireEngine(QQuickWindow* window) {