aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/window/Splash.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/window/Splash.qml')
-rw-r--r--examples/quick/window/Splash.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/window/Splash.qml b/examples/quick/window/Splash.qml
index c3e36d9b3b..b33ad6c168 100644
--- a/examples/quick/window/Splash.qml
+++ b/examples/quick/window/Splash.qml
@@ -78,9 +78,9 @@ Window {
}
//! [timer]
Timer {
- interval: timeoutInterval; running: true; repeat: false
+ interval: splash.timeoutInterval; running: true; repeat: false
onTriggered: {
- visible = false
+ splash.visible = false
splash.timeout()
}
}