mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 10:43:15 +02:00
* Created separate SVN version header. * Add true config.h for platform dependency checks. * Add dependency check cmake module. * Remove some leftover hand crafted make files. * Remove non-cmake build instructions from COMPILING.txt. * Fix split _() strings causing Visual C++ compiler error. * Fix lots of compiler warnings. * Change project file parameter container from wxArray to boost::vector_ptr. * Removed lots of redundant header definitions. * Fixed green_xpm redefinition in ercgreen.xpm. * Remove some dead code and unnecessary class methods.
26 lines
388 B
C
26 lines
388 B
C
/* XPM */
|
|
#ifndef XPMMAIN
|
|
extern const char * erc_green_xpm[];
|
|
#else
|
|
const char *erc_green_xpm[] = {
|
|
/* columns rows colors const chars-per-pixel */
|
|
"11 11 2 1",
|
|
"- c Black",
|
|
"X c Green",
|
|
|
|
/* pixels */
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX",
|
|
"XXXXXXXXXXXX"
|
|
};
|
|
#endif
|
|
|