summaryrefslogtreecommitdiffstats
path: root/examples/applicationmanager/intents/shared/IntentsApplicationWindow.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/applicationmanager/intents/shared/IntentsApplicationWindow.qml')
-rw-r--r--examples/applicationmanager/intents/shared/IntentsApplicationWindow.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/applicationmanager/intents/shared/IntentsApplicationWindow.qml b/examples/applicationmanager/intents/shared/IntentsApplicationWindow.qml
index 6f42eb7f..9269a2b8 100644
--- a/examples/applicationmanager/intents/shared/IntentsApplicationWindow.qml
+++ b/examples/applicationmanager/intents/shared/IntentsApplicationWindow.qml
@@ -65,7 +65,7 @@ ApplicationManagerWindow {
//! [Intent Handler]
IntentHandler {
- intentIds: "rotate-window"
+ intentIds: [ "rotate-window" ]
onRequestReceived: (request) => {
rotationAnimation.start()
request.sendReply({ "done": true })
@@ -74,7 +74,7 @@ ApplicationManagerWindow {
//! [Intent Handler]
IntentHandler {
- intentIds: "scale-window"
+ intentIds: [ "scale-window" ]
onRequestReceived: (request) => {
scaleAnimation.start()
request.sendReply({ "done": true })
@@ -82,7 +82,7 @@ ApplicationManagerWindow {
}
IntentHandler {
- intentIds: "blue-window-private"
+ intentIds: [ "blue-window-private" ]
onRequestReceived: (request) => {
blueAnimation.start()
request.sendReply({ "done": true })
@@ -90,7 +90,7 @@ ApplicationManagerWindow {
}
IntentHandler {
- intentIds: "broadcast/blink-window"
+ intentIds: [ "broadcast/blink-window" ]
onRequestReceived: (request) => {
blinkAnimation.start()
}