s/WXK_NEXT/WXK_PAGEDOWN/ to fix compilation with compatibility off

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-07-04 00:37:31 +00:00
parent 956689757d
commit f8dbde42fa

View File

@@ -826,7 +826,7 @@ static long wxTranslateKeySymToWXKey(KeySym keysym, bool isChar)
break;
case GDK_KP_Next: // == GDK_KP_Page_Down
key_code = isChar ? WXK_NEXT : WXK_NUMPAD_PAGEDOWN;
key_code = isChar ? WXK_PAGEDOWN : WXK_NUMPAD_PAGEDOWN;
break;
case GDK_KP_End: