aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/doc_src_unicode.qdoc
blob: 526c755e9ab800e00441e60293fa3b5a83a006c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! [0]
label.setText("Password:")
//! [0]


//! [1]
label.setText(QObject.tr("Password:"))
//! [1]


//! [2]
file_ = QFile("appicon.png")
//! [2]


//! [3]
file_= QFile("appicon.png")
//! [3]