Revert "playing with qtquick"
[ptas] / zouba / qtquickui / qtquickui.qml
diff --git a/zouba/qtquickui/qtquickui.qml b/zouba/qtquickui/qtquickui.qml
deleted file mode 100644 (file)
index 164c20e..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-import Qt 4.7
-import com.meego 1.0
-
-Window {
-    id: window
-
-    Component {
-        id: journeysPageComponent
-
-        Page {
-            title: "Journeys"
-            ListView {
-                anchors.fill: parent
-                model: Journeys { }
-                delegate: BasicListItem {
-                    title: journeys
-                    onClicked: {
-                        window.nextPage(Qt.createComponent(source));
-                    }
-                }
-
-                PositionIndicator { }
-            }
-        }
-    }
-
-    Component.onCompleted: {
-        window.nextPage(pageComponent)
-    }
-}