3ee12b2ca9
Just as the normal sources (*.h, *.cpp), these files should be using LF and not CR LF.
29 lines
523 B
C
29 lines
523 B
C
/* XPM */
|
|
static const char *wx_small_xpm[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"16 16 6 1",
|
|
". c Black",
|
|
"o c #FFFFFF",
|
|
"X c #000080",
|
|
"O c #FFFF00",
|
|
" c None",
|
|
"+ c #FF0000",
|
|
/* pixels */
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ....... ",
|
|
" .XXXXX. ",
|
|
" .oXXXX. ",
|
|
" .oXXX.......",
|
|
".....oXXX.OOOOO.",
|
|
".+++.XXXX.oOOOO.",
|
|
".o++......oOOOO.",
|
|
".o++++. .oOOOO.",
|
|
".o++++. .OOOOO.",
|
|
".+++++. .......",
|
|
"....... ",
|
|
" ",
|
|
" "
|
|
};
|