summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_gui_image_qbitmap.cpp
blob: 625f550caa304ce980decc42cdaa7d4b7f175272 (plain)
1
2
3
4
5
6
7
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
uchar arrow_bits[] = { 0x3f, 0x1f, 0x0f, 0x1f, 0x3b, 0x71, 0xe0, 0xc0 };
QBitmap bm(8, 8, arrow_bits, true);
//! [0]