Rename Qt Quick-specific classes to QQuick*
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qquickpathview / data / missingPercent.qml
1 import QtQuick 2.0
2
3 Path {
4     startY: 0
5     startX: 0
6     PathLine { x: 0; y: 50 }
7     PathPercent { value: .5 }
8     PathLine { x: 50; y: 50 }
9 }