Refactoring and model improvements
[quicknewsreader] / qml / QuickNewsReader / content / view / Journals.qml
diff --git a/qml/QuickNewsReader/content/view/Journals.qml b/qml/QuickNewsReader/content/view/Journals.qml
deleted file mode 100644 (file)
index be35893..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
-    id: journalsRect
-    width: 150
-    color: "#dfdfdf"
-
-    ListView {
-        focus: true
-        id: journals
-        x: 0; y: 0
-        width: 150; height: window.height
-        currentIndex: currentJournalIndex
-        model: journalList
-        footer: quitButtonDelegate
-        delegate: JournalDelegate {}
-        highlight: Rectangle { color: "steelblue" }
-        highlightMoveSpeed: 9999999
-    }
-    ScrollBar { scrollArea: journals; height: journals.height; width: 8; anchors.right: journals.right }
-}