a warning suppressed (arg to MessageBeep is UINT)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1114 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1998-12-05 23:07:13 +00:00
parent f04371f081
commit ce2006370e

View File

@ -322,7 +322,7 @@ void wxBell(void)
//#ifdef __WIN32__
// Beep(1000,1000) ; // 1kHz during 1 sec.
//#else
MessageBeep(-1) ;
MessageBeep((UINT)-1) ;
//#endif
}