summaryrefslogtreecommitdiffstats
path: root/examples/applicationmanager/intents/system-ui.qml
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@pelagicore.com>2018-10-29 17:12:57 +0100
committerDaniel d'Andrada <daniel.dandrada@luxoft.com>2018-10-30 09:48:09 +0000
commit116a0335e27285ba7fea008163ed255f2812ccf2 (patch)
tree5150a89bfc2dbeb99f3ccfcb2decc20005889cfe /examples/applicationmanager/intents/system-ui.qml
parentd4d9c2b195da8f1aa6cf1edf8abc465f6f3282f8 (diff)
Intents: fixed API naming to follow a consistent request/reply send/receive pattern
Change-Id: I29a80a6d31940c955f18ddcf3651be2e9607fcc8 Reviewed-by: Daniel d'Andrada <daniel.dandrada@luxoft.com>
Diffstat (limited to 'examples/applicationmanager/intents/system-ui.qml')
-rw-r--r--examples/applicationmanager/intents/system-ui.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/applicationmanager/intents/system-ui.qml b/examples/applicationmanager/intents/system-ui.qml
index ecc15236..830c84bd 100644
--- a/examples/applicationmanager/intents/system-ui.qml
+++ b/examples/applicationmanager/intents/system-ui.qml
@@ -103,8 +103,8 @@ Item {
title: "System-UI"
onRequest: {
- var request = IntentClient.createIntentRequest(intentId, applicationId, parameters)
- request.onFinished.connect(function() {
+ var request = IntentClient.sendIntentRequest(intentId, applicationId, parameters)
+ request.onReplyReceived.connect(function() {
sysui_page.setResult(request.requestId, request.succeeded,
request.succeeded ? request.result : request.errorMessage)
})