Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgloader / data / active.2.qml
1 import QtQuick 2.0
2
3 Item {
4     id: root
5
6     Loader {
7         id: loader
8         objectName: "loader"
9         source: "ActiveComponent.qml";
10
11         property int statusChangedCount:  0
12         onStatusChanged: statusChangedCount = statusChangedCount + 1
13     }
14
15     function doSetInactive() {
16         loader.active = false;
17     }
18 }