Warning fixes to unused variables, int/wxChar keycode and other typecasting, not mixing 'type*' and 'type' variables in single line, IsEmpty to empty replacement etc.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -958,7 +958,7 @@ bool wxPopupMenuWindow::ProcessKeyDown(int key)
|
||||
|
||||
default:
|
||||
// look for the menu item starting with this letter
|
||||
if ( wxIsalnum(key) )
|
||||
if ( wxIsalnum((wxChar)key) )
|
||||
{
|
||||
// we want to start from the item after this one because
|
||||
// if we're already on the item with the given accel we want to
|
||||
@@ -2284,7 +2284,7 @@ void wxMenuBar::OnKeyDown(wxKeyEvent& event)
|
||||
|
||||
int wxMenuBar::FindNextItemForAccel(int idxStart, int key, bool *unique) const
|
||||
{
|
||||
if ( !wxIsalnum(key) )
|
||||
if ( !wxIsalnum((wxChar)key) )
|
||||
{
|
||||
// we only support letters/digits as accels
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user