Rename Qt Quick-specific classes to QQuick*
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qquickloader / data / active.3.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 sourceChangedCount:  0
12         onSourceChanged: sourceChangedCount = sourceChangedCount + 1
13     }
14
15     function doSetInactive() {
16         loader.active = false;
17     }
18 }