psa: using 2 flickables
[feedingit] / psa_harmattan / feedingit / qml / ArticleViewer.qml
index 82ad870..4d93576 100644 (file)
@@ -24,20 +24,6 @@ Item {
         articles.reload()
     }
 
-    function next() {
-        if (articleView.visible) {
-            //articleView.positionViewAtIndex(modulo(articleView.currentIndex+1, articleView.count), ListView.Contain);
-            articleView.incrementCurrentIndex();
-        }
-    }
-
-    function prev() {
-        if (articleView.visible) {
-            //articleView.positionViewAtIndex(modulo(articleView.currentIndex-1, articleView.count), ListView.Contain);
-            articleView.decrementCurrentIndex();
-        }
-    }
-
     function markAllAsRead() {
         if (feedid!="") {
             controller.markAllAsRead(feedid)