summaryrefslogtreecommitdiffstats
path: root/examples/applicationmanager/frame-timer/system-ui
diff options
context:
space:
mode:
Diffstat (limited to 'examples/applicationmanager/frame-timer/system-ui')
-rw-r--r--examples/applicationmanager/frame-timer/system-ui/main.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/applicationmanager/frame-timer/system-ui/main.qml b/examples/applicationmanager/frame-timer/system-ui/main.qml
index b95cec1d..22d1c454 100644
--- a/examples/applicationmanager/frame-timer/system-ui/main.qml
+++ b/examples/applicationmanager/frame-timer/system-ui/main.qml
@@ -286,7 +286,9 @@ Window {
// Populates the windowsModel
Connections {
target: WindowManager
- onWindowAdded: windowsModel.append({"window":window})
+ function onWindowAdded(window) {
+ windowsModel.append({"window":window})
+ }
}
}
}