Adding PageStack support in qml
[feedingit] / psa_harmattan / feedingit / qml / Feeds.qml
index 3aadc56..874f426 100644 (file)
@@ -8,6 +8,8 @@ Item {
     x: parent.width; height: parent.height;
     anchors.top: parent.top; anchors.bottom: parent.bottom
 
+    signal feedClicked(string feedid)
+
     function reload() {
        feeds.xml = catid == "" ? "" : controller.getFeedsXml(catid);
         //feeds.reload()
@@ -90,8 +92,8 @@ Item {
             MouseArea { 
                 anchors.fill: wrapper; 
                 onClicked: { 
-                    controller.feedClicked(model.feed)
-                    container.feedClicked(feedid, updating=="True") 
+                    //controller.feedClicked(model.feed)
+                    feedClicked(feedid)
                     
                 }
             }