Warning fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31594 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-01-25 15:49:14 +00:00
parent 7a46263195
commit 11846af338
2 changed files with 10 additions and 5 deletions

View File

@@ -278,7 +278,7 @@ bool wxBMPHandler::SaveDib(wxImage *image,
for ( int i = 0; i < palette_size; i++ )
{
// if 1BPP_BW then the value should be either 0 or 255
wxUint8 c = (i > 0) && (format == wxBMP_1BPP_BW) ? 255 : i;
wxUint8 c = (wxUint8)((i > 0) && (format == wxBMP_1BPP_BW) ? 255 : i);
rgbquad[i*4] =
rgbquad[i*4+1] =