aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp
blob: fa8317a1aade00066736069b9e2b79c87d2b462d (plain)
1
2
3
4
//! [0]
uchar arrow_bits[] = { 0x3f, 0x1f, 0x0f, 0x1f, 0x3b, 0x71, 0xe0, 0xc0 };
QBitmap bm(8, 8, arrow_bits, true);
//! [0]