aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/qml/examples/modelview/delegate/delegate.qml
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/obscuren/qml/examples/modelview/delegate/delegate.qml')
-rw-r--r--Godeps/_workspace/src/github.com/obscuren/qml/examples/modelview/delegate/delegate.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/Godeps/_workspace/src/github.com/obscuren/qml/examples/modelview/delegate/delegate.qml b/Godeps/_workspace/src/github.com/obscuren/qml/examples/modelview/delegate/delegate.qml
deleted file mode 100644
index 4b37d31f6..000000000
--- a/Godeps/_workspace/src/github.com/obscuren/qml/examples/modelview/delegate/delegate.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 320; height: 200
-
- ListView {
- width: 120;
- model: colors.len
- delegate: Text {
- text: "I am color number: " + index
- color: colors.color(index)
- }
- anchors.top: parent.top
- anchors.bottom: parent.bottom
- anchors.horizontalCenter: parent.horizontalCenter
- }
-}