fixed bug #708570: Request 'silver' be allowed as a XPM value

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19861 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2003-03-29 10:19:32 +00:00
parent 3b3ca9beb8
commit 6a87168b30

View File

@ -488,6 +488,7 @@ static rgbRecord theRGBRecords[] =
{"seagreen", myRGB(82, 149, 132)}, {"seagreen", myRGB(82, 149, 132)},
{"seashell", myRGB(255, 245, 238)}, {"seashell", myRGB(255, 245, 238)},
{"sienna", myRGB(150, 82, 45)}, {"sienna", myRGB(150, 82, 45)},
{"silver", myRGB(192, 192, 192)},
{"skyblue", myRGB(114, 159, 255)}, {"skyblue", myRGB(114, 159, 255)},
{"slateblue", myRGB(126, 136, 171)}, {"slateblue", myRGB(126, 136, 171)},
{"slategray", myRGB(112, 128, 144)}, {"slategray", myRGB(112, 128, 144)},
@ -508,7 +509,7 @@ static rgbRecord theRGBRecords[] =
{"yellowgreen", myRGB(50, 216, 56)}, {"yellowgreen", myRGB(50, 216, 56)},
{NULL, myRGB(0, 0, 0)} {NULL, myRGB(0, 0, 0)}
}; };
static int numTheRGBRecords = 234; static int numTheRGBRecords = 235;
static unsigned char ParseHexadecimal(char digit1, char digit2) static unsigned char ParseHexadecimal(char digit1, char digit2)
{ {