WXK_PRIOR/WXK_NEXT are aliases for WXK_PAGEUP/WXK_PAGEDOWN

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25013 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-12-26 11:33:15 +00:00
parent 2481bf3cb6
commit dac3065d25
2 changed files with 4 additions and 0 deletions

View File

@@ -1475,9 +1475,11 @@ static wxString GetHotKey( const wxMenuItem& item )
hotkey << wxT("Down" );
break;
case WXK_PAGEUP:
case WXK_PRIOR:
hotkey << wxT("Prior" );
break;
case WXK_PAGEDOWN:
case WXK_NEXT:
hotkey << wxT("Next" );
break;
case WXK_LEFT: