aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/qtlabscontrols-swipeview-indicator.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/snippets/data/qtlabscontrols-swipeview-indicator.qml')
-rw-r--r--tests/auto/snippets/data/qtlabscontrols-swipeview-indicator.qml36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/auto/snippets/data/qtlabscontrols-swipeview-indicator.qml b/tests/auto/snippets/data/qtlabscontrols-swipeview-indicator.qml
deleted file mode 100644
index 530df68e..00000000
--- a/tests/auto/snippets/data/qtlabscontrols-swipeview-indicator.qml
+++ /dev/null
@@ -1,36 +0,0 @@
-import QtQuick 2.0
-import Qt.labs.controls 1.0
-
-Item {
- width: 200
- height: 320
-
- //! [1]
- SwipeView {
- id: view
-
- currentIndex: 1
- anchors.fill: parent
-
- Item {
- id: firstPage
- }
- Item {
- id: secondPage
- }
- Item {
- id: thirdPage
- }
- }
-
- PageIndicator {
- id: indicator
-
- count: view.count
- currentIndex: view.currentIndex
-
- anchors.bottom: view.bottom
- anchors.horizontalCenter: parent.horizontalCenter
- }
- //! [1]
-}