summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/helloworld/t1/tutorial1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/tutorials/helloworld/t1/tutorial1.qml')
-rw-r--r--examples/declarative/tutorials/helloworld/t1/tutorial1.qml16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/declarative/tutorials/helloworld/t1/tutorial1.qml b/examples/declarative/tutorials/helloworld/t1/tutorial1.qml
deleted file mode 100644
index e2c6650..0000000
--- a/examples/declarative/tutorials/helloworld/t1/tutorial1.qml
+++ /dev/null
@@ -1,16 +0,0 @@
-import Qt 4.6
-
-Rectangle {
- id: page
- width: 480
- height: 200
- color: "LightGrey"
- Text {
- id: helloText
- text: "Hello world!"
- font.pointSize: 24
- font.bold: true
- y: 30
- anchors.horizontalCenter: page.horizontalCenter
- }
-}