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:
@@ -97,9 +97,7 @@ wxAcceleratorTable::wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]
|
||||
{
|
||||
const wxAcceleratorEntry& entry = entries[i];
|
||||
|
||||
int keycode = entry.GetKeyCode();
|
||||
if ( wxIslower(keycode) )
|
||||
keycode = wxToupper(keycode);
|
||||
int keycode = wxToupper(entry.GetKeyCode());
|
||||
|
||||
M_ACCELDATA->m_accels.Append(new wxAcceleratorEntry(entry.GetFlags(),
|
||||
keycode,
|
||||
|
||||
Reference in New Issue
Block a user