1780a38b7b
This fixes compilation with g++ in C++0x mode in which conversions of constants not fitting into signed char range to char are not permitted. Closes #12575. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65846 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
7 lines
287 B
C
7 lines
287 B
C
#define bdiag_width 16
|
|
#define bdiag_height 16
|
|
static unsigned char bdiag_bits[] = {
|
|
0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x04,
|
|
0x02, 0x02, 0x01, 0x01, 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x10,
|
|
0x08, 0x08, 0x04, 0x04, 0x02, 0x02, 0x01, 0x01};
|