Warning fixes related to various cases of typecasting.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29953 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-10-17 21:39:05 +00:00
parent 804cd2075d
commit 7ac31c429f
7 changed files with 20 additions and 18 deletions

View File

@@ -77,7 +77,9 @@
typedef unsigned short UINT16;
typedef signed short INT16;
#ifndef __WATCOMC__
typedef signed int INT32;
#endif
typedef unsigned char JSAMPLE;
typedef JSAMPLE *JSAMPROW;
@@ -1569,7 +1571,7 @@ bool wxQuantize::Quantize(const wxImage& src, wxImage& dest,
// We need to shift the palette entries up
// to make room for the Windows system colours.
for (i = 0; i < w * h; i++)
data8bit[i] = data8bit[i] + paletteShift;
data8bit[i] = (unsigned char)(data8bit[i] + paletteShift);
}
#endif
*eightBitData = data8bit;