mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
33 lines
674 B
C
33 lines
674 B
C
|
/* XPM */
|
||
|
static char const * empty_xpm[] = {
|
||
|
/* width height num_colors chars_per_pixel */
|
||
|
" 20 20 2 1",
|
||
|
/* colors */
|
||
|
". c #000000000000",
|
||
|
"# c None",
|
||
|
/* pixels */
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################",
|
||
|
"####################"
|
||
|
};
|
||
|
|
||
|
|
||
|
|