summaryrefslogtreecommitdiff
path: root/src/launcher-lib/intentclientdbusimplementation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/launcher-lib/intentclientdbusimplementation.cpp')
-rw-r--r--src/launcher-lib/intentclientdbusimplementation.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/launcher-lib/intentclientdbusimplementation.cpp b/src/launcher-lib/intentclientdbusimplementation.cpp
index c4056a31..57451388 100644
--- a/src/launcher-lib/intentclientdbusimplementation.cpp
+++ b/src/launcher-lib/intentclientdbusimplementation.cpp
@@ -40,9 +40,12 @@ void IntentClientDBusImplementation::initialize(IntentClient *intentClient) Q_DE
QQmlEngine::setObjectOwnership(IntentClient::instance(), QQmlEngine::CppOwnership);
return IntentClient::instance();
});
+ qmlRegisterRevision<IntentClient, 1>("QtApplicationManager", 2, 1);
qmlRegisterUncreatableType<IntentClientRequest>("QtApplicationManager", 2, 0, "IntentRequest",
qSL("Cannot create objects of type IntentRequest"));
+ qmlRegisterUncreatableType<IntentClientRequest, 1>("QtApplicationManager", 2, 1, "IntentRequest",
+ qSL("Cannot create objects of type IntentRequest"));
qmlRegisterType<IntentHandler>("QtApplicationManager.Application", 2, 0, "IntentHandler");