Warning fixes to most detailed warning output of OpenWatcom. Tested under Borland, DigitalMars and MinGW.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29652 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-10-04 19:47:55 +00:00
parent 890976b89f
commit 0203c8cd67
2 changed files with 17 additions and 17 deletions

View File

@@ -106,7 +106,7 @@ static CharsetItem* BuildReverseTable(wxUint16 *tbl)
CharsetItem *rev = new CharsetItem[128];
for (int i = 0; i < 128; i++)
rev[i].c = 128 + i, rev[i].u = tbl[i];
rev[i].c = wxUint8(128 + i), rev[i].u = tbl[i];
qsort(rev, 128, sizeof(CharsetItem), CompareCharsetItems);