aboutsummaryrefslogtreecommitdiffstats
path: root/SampleMediaApp/qml
diff options
context:
space:
mode:
authorBocklage, Jens <Jens_Bocklage@mentor.com>2016-12-12 17:20:44 +0100
committerBocklage, Jens <Jens_Bocklage@mentor.com>2016-12-12 17:20:44 +0100
commit4f911d73e2a9a18c3d273b5deb3f1fc952ee68d2 (patch)
tree0f27f14dff057f9b64b97b5fc2f3e2c0ee539557 /SampleMediaApp/qml
parent4088de47844451c7b331a612d41a0ec5fc7db53a (diff)
Remove SampleMediaApp and SampleNavigationApp
No longer needed as QML examples Signed-off-by: Bocklage, Jens <Jens_Bocklage@mentor.com>
Diffstat (limited to 'SampleMediaApp/qml')
-rw-r--r--SampleMediaApp/qml/SampleMediaApp/main.qml30
1 files changed, 0 insertions, 30 deletions
diff --git a/SampleMediaApp/qml/SampleMediaApp/main.qml b/SampleMediaApp/qml/SampleMediaApp/main.qml
deleted file mode 100644
index 7d63362..0000000
--- a/SampleMediaApp/qml/SampleMediaApp/main.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- width: 400
- height: 300
-
-
- Rectangle {
- width: parent.width / 2
- height: parent.height
- color: "yellow"
-
- Text {
- text: qsTr("SampleMediaApp")
- anchors.centerIn: parent
- }
- }
-
- Rectangle {
- width: parent.width / 2
- height: parent.height
- x: parent.width / 2
- color: "yellow"
-
- Text {
- text: qsTr("default size: 400x300px")
- anchors.centerIn: parent
- }
- }
-}