aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlpropertycache/data/qmlOverriddenSignal.qml
blob: b8fee089780e5bb5bab22fb5ca8c96cb4f75aab3 (plain)
1
2
3
4
5
6
7
8
import QtQml
import Test.PropertyCache

BaseObject {
    property int callCount: 0
    function signalA() { ++callCount }
    Component.onCompleted: signalA()
}