X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4d53859584e0fb987fef609c620937e46b0f751a..39987096b3aa3e1bec4f69a5793780f7ea2dd914:/src/common/menucmn.cpp diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index edf51cab54..eebcea9bf9 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -174,9 +174,9 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label) else if ( current == wxT("ENTER") || current == wxT("RETURN") ) keyCode = WXK_RETURN; else if ( current == wxT("PGUP") ) - keyCode = WXK_PRIOR; + keyCode = WXK_PAGEUP; else if ( current == wxT("PGDN") ) - keyCode = WXK_NEXT; + keyCode = WXK_PAGEDOWN; else if ( current == wxT("LEFT") ) keyCode = WXK_LEFT; else if ( current == wxT("RIGHT") ) @@ -250,11 +250,11 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label) else if ( current == wxT("KP_DOWN") ) keyCode = WXK_NUMPAD_DOWN; else if ( current == wxT("KP_PRIOR") ) - keyCode = WXK_NUMPAD_PRIOR; + keyCode = WXK_NUMPAD_PAGEUP; else if ( current == wxT("KP_PAGEUP") ) keyCode = WXK_NUMPAD_PAGEUP; else if ( current == wxT("KP_NEXT;") ) - keyCode = WXK_NUMPAD_NEXT; + keyCode = WXK_NUMPAD_PAGEDOWN; else if ( current == wxT("KP_PAGEDOWN") ) keyCode = WXK_NUMPAD_PAGEDOWN; else if ( current == wxT("KP_END") )