aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmlprofilerservice/data/timer.qml
blob: 4af555a27b2246d22e2675f4ccfeabdd0cb9abb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQml 2.0

QtObject {
    property int width: 100
    property int height: 62

    property var timer: Timer {
        running: true
        repeat: true
        interval: 50
        onTriggered: height = (2 * height) % 99;
    }
}