7959aa4cda
Previously, compiling wmcdplay caused a large number of warnings of the form "deprecated conversion from string constant to ‘char*’". This was fixed by changing "char *" declarations to "const char *", especially in the .xpm files, and using "const_cast" as needed when an external library expected a non-const.
17 lines
478 B
C
17 lines
478 B
C
/* XPM */
|
|
static const char * ledtsel_xpm[]={
|
|
"29 11 2 1",
|
|
" c #000000",
|
|
"0 c #00ff00 s led_color_high",
|
|
" 00 00 00 ",
|
|
" 0 0 0 0 0 0 0 0 ",
|
|
" 0 0 0 0 0 0 0 ",
|
|
" 0 0 0 0 0 0 000 ",
|
|
" 0 0 0 0 0 0 0 ",
|
|
" 000 000 000 000 ",
|
|
" 0 0 0 0 0 ",
|
|
" 0 0 0 0 000 ",
|
|
" 0 ",
|
|
" 0 0",
|
|
" 000 000 00 "};
|