aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/qml/examples/qmlscene/tutorial1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/obscuren/qml/examples/qmlscene/tutorial1.qml')
-rw-r--r--Godeps/_workspace/src/github.com/obscuren/qml/examples/qmlscene/tutorial1.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/Godeps/_workspace/src/github.com/obscuren/qml/examples/qmlscene/tutorial1.qml b/Godeps/_workspace/src/github.com/obscuren/qml/examples/qmlscene/tutorial1.qml
deleted file mode 100644
index e42216e6a..000000000
--- a/Godeps/_workspace/src/github.com/obscuren/qml/examples/qmlscene/tutorial1.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-// See http://qt-project.org/doc/qt-5.1/qtquick/qml-tutorial1.html
-
-import QtQuick 2.0
-
-Rectangle {
- id: page
- width: 320; height: 480
- color: "lightgray"
-
- Text {
- id: helloText
- text: "Hello world!"
- y: 30
- anchors.horizontalCenter: page.horizontalCenter
- font.pointSize: 24; font.bold: true
- }
-}