Thanks, but I am still stuck. This is what I do

PreviousPage.qml
Page {
    id: previous
    property string topic: "default value"
...

Topics.qml
Page {
    id: topics
    property string topic
...
            Button {
                id: topic0
                text: qsTr("Topic 0")
                anchors.horizontalCenter: parent.horizontalCenter
                onClicked: {
                    // PreviousPage.topic = "Test"; // reference error
                    previous.topic = "Test"; // reference error
                    pageStack.pop();
                }
            }

Thanks again!

Markus
_______________________________________________
SailfishOS.org Devel mailing list
To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org

Reply via email to