fixes for harmless mingw32 warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29157 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-09-16 18:50:48 +00:00
parent 4c8fc4d66c
commit 93bfd481b7
2 changed files with 2 additions and 2 deletions

View File

@@ -4720,7 +4720,7 @@ int wxWindowMSW::HandleMenuChar(int chAccel, WXLPARAM lParam)
// FIXME-UNICODE: this comparison doesn't risk to work
// for non ASCII accelerator characters I'm afraid, but
// what can we do?
if ( wxToupper(*p) == chAccel )
if ( wxToupper(*p) == (wchar_t)chAccel )
{
return i;
}