aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtDeclarative/bug_926.qml
blob: 50895db1c1b3686697cdbe76ec4c71ef5a526865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Qt 4.7
import Example 1.0

Rectangle {
    width: 100
    height: 62

    MyClass {
        id: myClass
        urla: "http://www.pyside.org"
    }

    Text {
        id: name
        text: myClass.urla
    }
}