summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/qml-intro/hello-world2.qml
blob: 73b2f8ceae74bf54997c035c930402d82e1a4c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Qt 4.7

Rectangle {
    id: myRectangle
    width: 500
    height: 400

//! [updated text]
    Text {
        text: "<h2>Hello World</h2>"; color: "darkgreen"
        x: 100; y:100
    }
//! [updated text]

    color: "lightgray"
}