fix for broken color parsing in wxXPMDecoder (thanks to H.H.Chou)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14081 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2002-02-09 15:58:00 +00:00
parent aef5844075
commit 1943c8778a

View File

@@ -702,7 +702,7 @@ wxImage wxXPMDecoder::ReadData(const char **xpm_data)
{
for (i_key = 0; i_key < chars_per_pixel; i_key++)
key[i_key] = (wxChar)xpm_data[1 + i][i_key];
clr_def = ParseColor(xpm_data[1 + i]);
clr_def = ParseColor(xpm_data[1 + i] + chars_per_pixel);
clr_data = new wxXPMColourMapData;
if ( clr_def == NULL )