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

Rectangle {
    id: myRectangle
    width: 500
    height: 400

//! [updated text]
    Text {
        text: "<h1>Hello world again</h1>"
        color: "#002288"
        x: 100; y: 100
    }
//! [updated text]

    color: "lightgray"
}