summaryrefslogtreecommitdiffstats
path: root/src/widgets/doc/snippets/code/src_gui_widgets_qstatusbar.cpp
blob: e05d27353a18c9e83d26d752ebafcd67ac4b4f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
statusBar()->addWidget(new MyReadWriteIndication);
//! [0]

//! [1]
statusBar()->showMessage(tr("Ready"));
//! [1]

//! [2]
statusBar()->showMessage(tr("Ready"), 2000);
//! [2]