fix XPM SaveFile for more than 92 colors

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@47088 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2007-07-03 03:08:26 +00:00
parent 33fac1eaf7
commit 1a5f13bcf5
2 changed files with 4 additions and 5 deletions

View File

@@ -105,6 +105,7 @@ All (GUI):
- Added wxAuiNotebook::SetFont, GetTabCtrlHeight, GetHeightForPageHeight.
- Added SetBitmap/GetBitmap to wxWizard, to allow e.g. on-the-fly creation
of bitmap to fit page height.
- Fixed wxXPMHandler::SaveFile for images with more than 92 colors.
wxMSW:

View File

@@ -181,12 +181,10 @@ bool wxXPMHandler::SaveFile(wxImage * image,
symbols[index] = symbols_data + index * (chars_per_pixel+1);
char *sym = symbols[index];
k = index % MaxCixels;
sym[0] = Cixel[k];
for (j = 1; j < chars_per_pixel; j++)
for (j = 0; j < chars_per_pixel; j++)
{
k = ((index - k) / MaxCixels) % MaxCixels;
sym[j] = Cixel[k];
sym[j] = Cixel[index % MaxCixels];
index /= MaxCixels;
}
sym[j] = '\0';